mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-21 19:39:26 +08:00
19 lines
251 B
CMake
19 lines
251 B
CMake
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
enable_testing()
|
|
|
|
ADD_EXECUTABLE( unittests
|
|
test_api.cpp
|
|
test_utility.cpp
|
|
test_config.cpp
|
|
test_regex.cpp
|
|
)
|
|
|
|
TARGET_LINK_LIBRARIES(unittests
|
|
|
|
openalpr
|
|
|
|
)
|
|
|
|
add_test(unittests unittests) |