summaryrefslogtreecommitdiff
path: root/compiler/locoex-customop/CMakeLists.txt
blob: df1e01526bec05f31a1e8c73337c510e57815d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
file(GLOB_RECURSE SOURCES "src/*.cpp")
file(GLOB_RECURSE TESTS "src/*.test.cpp")
list(REMOVE_ITEM SOURCES ${TESTS})

add_library(locoex_customop SHARED ${SOURCES})
target_include_directories(locoex_customop PUBLIC include)
target_link_libraries(locoex_customop PUBLIC loco)
target_link_libraries(locoex_customop PRIVATE stdex locop pepper_str)
install(TARGETS locoex_customop DESTINATION lib)

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

nnas_find_package(GTest REQUIRED)

GTest_AddTest(locoex_customop_test ${TESTS})
target_link_libraries(locoex_customop_test loco locoex_customop stdex)