Older/WebApplication/CMakeLists.txt
amass c3f535e82e
All checks were successful
Deploy / Build (push) Successful in 7m23s
update cookie lifetime.
2025-01-03 14:12:02 +08:00

26 lines
680 B
CMake

find_package(Wt REQUIRED Wt)
add_library(WebApplication
Application.h Application.cpp
BulmaTheme.h BulmaTheme.cpp
HomePage.h HomePage.cpp
LoginPage.h LoginPage.cpp
NavigationBar.h NavigationBar.cpp
VisitorRecordsPage.h VisitorRecordsPage.cpp
Restful.h Restful.cpp
Dialog.h Dialog.cpp
model/AuthModel.h model/AuthModel.cpp
model/VisitorRecordTableModel.h model/VisitorRecordTableModel.cpp
)
get_filename_component(PARENT_DIR ${CMAKE_CURRENT_SOURCE_DIR} DIRECTORY)
target_include_directories(WebApplication
INTERFACE ${PARENT_DIR}
)
target_link_libraries(WebApplication
PUBLIC Universal
PRIVATE Wt::HTTP
PRIVATE Database
)