Skip to content

Commit

Permalink
Include the dependencies folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tcezard committed Oct 12, 2024
1 parent 90fc6e3 commit ac59d06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ if (DEFINED STATIC_BUILD)
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd") # also requires boost with runtime-link=static
add_definitions(-DCURL_STATICLIB) # Needed to statically link libcurl
add_definitions(-DNOMINMAX) # Needed to suppress min and max definitions by Windows
include_directories (dependencies)
set(CURL_INCLUDE_DIRS dependencies/curl/include)
include_directories(${CURL_INCLUDE_DIRS})
set(CURL_LIBRARIES dependencies/curl/lib/libcurl)
Expand Down Expand Up @@ -110,7 +111,7 @@ message("CMAKE_THREAD_LIBS_INIT: ${CMAKE_THREAD_LIBS_INIT}")

set (THIRD_PARTY_LIBRARIES
${Boost_LIBRARIES}
${CURL_LIBRARIES}
${CURL_LIBRARIES}
${HARD_CODED_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
Expand Down

0 comments on commit ac59d06

Please sign in to comment.