summaryrefslogtreecommitdiff
path: root/compiler/circle-inspect/CMakeLists.txt
blob: d0775ea2d1e8554aa60e7b18eed1e7f0f7b3a761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if(NOT TARGET mio_circle)
  return()
endif(NOT TARGET mio_circle)

set(DRIVER "driver/Driver.cpp")

file(GLOB_RECURSE SOURCES "src/*.cpp")

add_executable(circle-inspect ${DRIVER} ${SOURCES})
target_include_directories(circle-inspect PRIVATE src)
target_link_libraries(circle-inspect arser)
target_link_libraries(circle-inspect foder)
target_link_libraries(circle-inspect mio_circle)
target_link_libraries(circle-inspect safemain)