summaryrefslogtreecommitdiff
path: root/compiler/circlechef/tools/console/CMakeLists.txt
blob: faf0a94f090b8772851e091c89a7e6f9c0198bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
add_executable(circlechef Driver.cpp)
target_link_libraries(circlechef circlechef_core)
target_link_libraries(circlechef safemain)

if(NOT ENABLE_TEST)
  return()
endif(NOT ENABLE_TEST)

nnas_find_package(GTest REQUIRED)

GTest_AddTest(circlechef_test Driver.test.cpp Driver.cpp)
target_link_libraries(circlechef_test circlechef_core)