15 lines
498 B
CMake
15 lines
498 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
project(prometheus_example_test CXX)
|
|
|
|
add_executable(${PROJECT_NAME} test_main.cc)
|
|
|
|
# ##############################################################################
|
|
# If you include the drogon source code locally in your project, use this method
|
|
# to add drogon
|
|
# target_link_libraries(${PROJECT_NAME} PRIVATE drogon)
|
|
#
|
|
# and comment out the following lines
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE Drogon::Drogon)
|
|
|
|
ParseAndAddDrogonTests(${PROJECT_NAME})
|