Add -lstdc++fs to cmake for older GCC (#11)

This commit is contained in:
BR- 2022-07-06 11:21:18 -07:00 committed by GitHub
parent 4ae7bba638
commit 583769d7c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -13,4 +13,5 @@ add_executable(wibo
user32.cpp user32.cpp
version.cpp version.cpp
) )
target_link_libraries(wibo PRIVATE stdc++fs)
install(PROGRAMS wibo DESTINATION bin) install(PROGRAMS wibo DESTINATION bin)