20 lines
297 B
CMake
20 lines
297 B
CMake
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
|
|
)
|