Prusa-Firmware/CMakeLists.txt

20 lines
478 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.0)
project(cmake_test)
# Prepare "Catch" library for other executables
set(CATCH_INCLUDE_DIR Catch2)
add_library(Catch INTERFACE)
target_include_directories(Catch INTERFACE ${CATCH_INCLUDE_DIR})
# Make test executable
set(TEST_SOURCES
Tests/tests.cpp
Tests/Example_test.cpp
2018-06-11 20:50:52 +00:00
Tests/Timer_test.cpp
Firmware/Timer.cpp
)
add_executable(tests ${TEST_SOURCES})
2018-06-11 20:50:52 +00:00
target_include_directories(tests PRIVATE Tests)
target_link_libraries(tests Catch)