Commit ae9b25f8 authored by jan.koester's avatar jan.koester
Browse files

fixed linking

parent 966ab442
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -8,19 +8,19 @@ if(BUILD_EXAMPLES AND ${htmlpp_FOUND})
        ${CMAKE_SOURCE_DIR}/src
    )  
    add_executable (httpcon httpcon.cpp)
    target_link_libraries(httpcon httppp-static htmlpp-static)
    target_link_libraries(httpcon httppp-static htmlpp::htmlpp-static)
    add_executable (httpform httpform.cpp)
    target_link_libraries(httpform httppp-static htmlpp-static)
    target_link_libraries(httpform httppp-static htmlpp::htmlpp-static)
    add_executable (httpsysinfo httpsysinfo.cpp)
    target_link_libraries(httpsysinfo httppp-static htmlpp-static)
    target_link_libraries(httpsysinfo httppp-static htmlpp::htmlpp-static)
    add_executable (httpcookie httpcookie.cpp)
    target_link_libraries(httpcookie httppp-static htmlpp-static)
    target_link_libraries(httpcookie httppp-static htmlpp::htmlpp-static)
    add_executable (httpauth httpauth.cpp)
    target_link_libraries(httpauth httppp-static htmlpp-static)
    target_link_libraries(httpauth httppp-static htmlpp::htmlpp-static)
    add_executable (httpproxy httpproxy.cpp)
    target_link_libraries(httpproxy httppp-static htmlpp-static)
    target_link_libraries(httpproxy httppp-static htmlpp::htmlpp-static)
    add_executable (httphello httphello.cpp)
    target_link_libraries(httphello httppp-static htmlpp-static)
    target_link_libraries(httphello httppp-static htmlpp::htmlpp-static)
endif()

add_executable (httpclient httpclient.cpp)