Older/WebApplication/CMakeLists.txt
amass 3630721e63
All checks were successful
Deploy / PullDocker (push) Successful in 6s
Deploy / Build (push) Successful in 2m23s
add dialog example.
2024-10-31 23:30:34 +08:00

25 lines
501 B
CMake

add_library(WebApplication
WebApplication.h WebApplication.cpp
Hello.h Hello.cpp
Dialog.h Dialog.cpp
Session.h Session.cpp
User.h User.cpp
)
target_include_directories(WebApplication
INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
PRIVATE ${WT_INCLUDE_DIR}
)
target_link_directories(WebApplication
PUBLIC ${WT_LIBRARY_DIRS}
)
target_link_libraries(WebApplication
PUBLIC wt
PUBLIC wttest
PUBLIC wthttp
PUBLIC wtdbo
PUBLIC wtdbosqlite3
PUBLIC Universal
)