Older/WebApplication/CMakeLists.txt
luocai a9640bbda5
All checks were successful
Deploy Docker Images / Build dockerfile and Server deploy (push) Successful in 17s
Deploy / Build (push) Successful in 3m11s
remove blog example source.
2024-11-11 19:21:48 +08:00

22 lines
461 B
CMake

add_library(WebApplication
WebApplication.h WebApplication.cpp
User.h User.cpp
Hello.h Hello.cpp
Restful.h Restful.cpp
Dialog.h Dialog.cpp
Session.h Session.cpp
)
target_include_directories(WebApplication
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
PRIVATE ${WT_INCLUDE_DIR}
)
target_link_directories(WebApplication
PUBLIC ${WT_LIBRARY_DIRS}
)
target_link_libraries(WebApplication
PRIVATE ${WT_LIBRARIES}
PUBLIC Universal
)