Commit 398d9c0e authored by jan.koester's avatar jan.koester
Browse files

fixes

parent 4226b967
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
/build/*
/out/*
/.vs/*
 No newline at end of file
+13 −7
Original line number Diff line number Diff line
cmake_minimum_required(VERSION 3.0)
project(guestbook)

find_package(libnetplus REQUIRED)
find_package(httppp REQUIRED)

project(guestbook)
find_package(libcmdplus REQUIRED)
find_package(libhttppp REQUIRED)
find_package(libhtmlpp REQUIRED)

add_executable(guestbook main.cpp)

target_include_directories(guestbook
    PUBLIC
    ${httppp_INCLUDE_DIRECTORIES}
    ${htmlpp_INCLUDE_DIRECTORIES}
    ${netplus_INCLUDE_DIRECTORIES}
    ${HTTPPP_INCLUDE_DIR}
    ${HTMLPP_INCLUDE_DIR}
    ${NETPLUS_INCLUDE_DIR}
)

target_link_libraries(guestbook ${httppp_LIBRARIES} netplus htmlpp)
target_link_libraries(guestbook 
    netplus::netplus 
    htmlpp::htmlpp-static 
    httppp::httppp-static 
    cmdplus::cmdplus
)

retro.html

0 → 100644
+0 −0

Empty file added.