summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Morozenkov <m@oleg.rocks>2023-05-11 00:21:30 +0400
committerGitHub <noreply@github.com>2023-05-11 00:21:30 +0400
commit49f525ed18ce4a2e0100824452fb35c100ed270a (patch)
tree1a9259ee34bc2a34699c53679063489915f26e3d
parentc9ebca67ba33cc2e132cc19e51d52ec2d275fac1 (diff)
parentd841f0eed75e6800382c843aaaee5746811e70df (diff)
Merge pull request #270 from r4d1sh/cmake
Improvements for CMake rules
-rw-r--r--CMakeLists.txt12
1 files changed, 11 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b50b03a..290d201 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,10 @@
cmake_minimum_required(VERSION 3.10.2)
project(TgBot)
+if(POLICY CMP0074)
+ cmake_policy(SET CMP0074 NEW) # find_package() uses <PackageName>_ROOT variables
+endif()
+
# options
option(ENABLE_TESTS "Set to ON to enable building of tests" OFF)
option(BUILD_SHARED_LIBS "Build tgbot-cpp shared/static library." OFF)
@@ -12,6 +16,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
if(WIN32)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
+ add_definitions(-D_WIN32_WINNT=0x0601)
+ add_definitions(-DWIN32_LEAN_AND_MEAN)
+ add_definitions(-DNOMINMAX)
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
endif()
@@ -75,9 +82,12 @@ set(LIB_LIST
${ZLIB_LIBRARIES}
${OPENSSL_LIBRARIES}
${Boost_LIBRARIES}
- ${CURL_LIBRARIES}
)
+if (CURL_FOUND)
+ set(LIB_LIST ${LIB_LIST} ${CURL_LIBRARIES})
+endif()
+
# building project
add_library(${PROJECT_NAME} ${SRC_LIST})
target_include_directories(${PROJECT_NAME} PUBLIC include)