summaryrefslogtreecommitdiff
path: root/compiler/circle-operator/CMakeLists.txt
blob: 33d9a96d0062fcec9c3f92ec0c31e35f15c012d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if(NOT TARGET mio_circle06)
  return()
endif(NOT TARGET mio_circle06)

set(DRIVER "driver/Driver.cpp")

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

add_executable(circle-operator ${DRIVER} ${SOURCES})
target_include_directories(circle-operator PRIVATE src)
target_link_libraries(circle-operator arser)
target_link_libraries(circle-operator foder)
target_link_libraries(circle-operator mio_circle06)
target_link_libraries(circle-operator mio_circle06_helper)
target_link_libraries(circle-operator safemain)

install(TARGETS circle-operator DESTINATION bin)