mirror of
https://github.com/PerMalmberg/libcron.git
synced 2025-10-18 05:45:20 -05:00
Begun implementation.
This commit is contained in:
19
test/CMakeLists.txt
Normal file
19
test/CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
project(cron_test)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -fsanitize=address -lasan")
|
||||
|
||||
add_definitions(-DEXPOSE_PRIVATE_PARTS)
|
||||
|
||||
include_directories(
|
||||
externals/Catch2/single_include/
|
||||
..
|
||||
)
|
||||
|
||||
add_executable(
|
||||
${PROJECT_NAME}
|
||||
test.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} libcron)
|
Reference in New Issue
Block a user