21 lines
297 B
Text
21 lines
297 B
Text
|
include(${PROJECT_SOURCE_DIR}/CMake/sqlite3.cmake)
|
||
|
|
||
|
add_executable(TestSQLite)
|
||
|
|
||
|
target_compile_features(TestSQLite
|
||
|
PRIVATE
|
||
|
cxx_std_20
|
||
|
)
|
||
|
|
||
|
target_link_libraries(TestSQLite
|
||
|
PRIVATE
|
||
|
Garbage
|
||
|
sqlite3
|
||
|
Catch2::Catch2WithMain
|
||
|
)
|
||
|
|
||
|
target_sources(TestSQLite
|
||
|
PRIVATE
|
||
|
Main.cpp
|
||
|
)
|