summaryrefslogtreecommitdiff
path: root/compiler/pepper-str/CMakeLists.txt
blob: cbe01b86a8f7bda1257261bd78a396c0243e1479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
add_library(pepper_str INTERFACE)
target_include_directories(pepper_str INTERFACE include)

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

# Google Test is mandatory for test
nnas_find_package(GTest REQUIRED)

GTest_AddTest(pepper_str_test test.cpp)
target_link_libraries(pepper_str_test pepper_str)