generated from Trianta/cpp-unity-template
10 lines
253 B
CMake
10 lines
253 B
CMake
find_package(unity REQUIRED)
|
|
include_directories(${sudoku_SOURCE_DIR}/src)
|
|
add_executable(testing
|
|
test.cpp
|
|
test_list.cpp
|
|
../src/sudoku.cpp
|
|
)
|
|
set_target_properties(testing PROPERTIES LINKER_LANGUAGE CXX)
|
|
target_link_libraries(testing unity)
|