add dirscan
This commit is contained in:
11
dirscan/CMakeLists.txt
Normal file
11
dirscan/CMakeLists.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
# CMakeList.txt :
|
||||
|
||||
add_executable (dirscan "dirscan.cpp" )
|
||||
|
||||
set_property(TARGET dirscan PROPERTY CXX_STANDARD 23)
|
||||
set_property(TARGET dirscan PROPERTY CXX_STANDARD_REQUIRED ON)
|
||||
set_property(TARGET dirscan PROPERTY CXX_EXTENSIONS OFF)
|
||||
|
||||
find_package(SQLite3 REQUIRED)
|
||||
target_include_directories( dirscan PRIVATE ${SQLite3_INCLUDE_DIRS})
|
||||
target_link_libraries( dirscan PRIVATE ${SQLite3_LIBRARIES} )
|
||||
Reference in New Issue
Block a user