Added include_directories(.) in CMakeLists.txt.
This commit is contained in:
parent
3042ee4a31
commit
9fa5fac4cb
2 changed files with 4 additions and 2 deletions
|
|
@ -30,6 +30,8 @@ include_directories(${OPENSSL_INCLUDE_DIR})
|
||||||
find_package(Threads REQUIRED)
|
find_package(Threads REQUIRED)
|
||||||
message("Threads libraries/flag: ${CMAKE_THREAD_LIBS_INIT}")
|
message("Threads libraries/flag: ${CMAKE_THREAD_LIBS_INIT}")
|
||||||
|
|
||||||
|
include_directories(.)
|
||||||
|
|
||||||
add_executable(https_examples https_examples.cpp)
|
add_executable(https_examples https_examples.cpp)
|
||||||
target_link_libraries(https_examples ${Boost_LIBRARIES})
|
target_link_libraries(https_examples ${Boost_LIBRARIES})
|
||||||
target_link_libraries(https_examples ${OPENSSL_SSL_LIBRARIES})
|
target_link_libraries(https_examples ${OPENSSL_SSL_LIBRARIES})
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#define private public
|
#define private public
|
||||||
|
|
||||||
#include "../server_http.hpp"
|
#include "server_http.hpp"
|
||||||
#include "../client_http.hpp"
|
#include "client_http.hpp"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue