mirror of
https://github.com/oatpp/oatpp-postgresql.git
synced 2024-12-09 03:10:03 +08:00
29 lines
668 B
CMake
29 lines
668 B
CMake
|
add_executable(module-tests
|
||
|
oatpp-postgresql/tests.cpp
|
||
|
)
|
||
|
|
||
|
set_target_properties(module-tests PROPERTIES
|
||
|
CXX_STANDARD 11
|
||
|
CXX_EXTENSIONS OFF
|
||
|
CXX_STANDARD_REQUIRED ON
|
||
|
)
|
||
|
|
||
|
target_include_directories(module-tests
|
||
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
)
|
||
|
|
||
|
if(OATPP_MODULES_LOCATION STREQUAL OATPP_MODULES_LOCATION_EXTERNAL)
|
||
|
add_dependencies(module-tests ${LIB_OATPP_EXTERNAL})
|
||
|
endif()
|
||
|
|
||
|
add_dependencies(module-tests ${OATPP_THIS_MODULE_NAME})
|
||
|
|
||
|
target_link_oatpp(module-tests)
|
||
|
|
||
|
target_link_libraries(module-tests
|
||
|
PRIVATE ${OATPP_THIS_MODULE_NAME}
|
||
|
)
|
||
|
|
||
|
## TODO link dependencies here (if some)
|
||
|
|
||
|
add_test(module-tests module-tests)
|