forked from Wirlaburla/P3NG0
fix curl compile cmake
This commit is contained in:
parent
ce204d0f8f
commit
d9959342d3
|
@ -1,10 +1,8 @@
|
|||
cmake_minimum_required(VERSION 3.5)
|
||||
project(pengobot)
|
||||
add_definitions(-DCURL_STATICLIB)
|
||||
SET(CMAKE_CXX_STANDARD 17)
|
||||
SET(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
SET(CMAKE_CXX_FLAGS "-O3")
|
||||
find_package(CURL REQUIRED)
|
||||
include_directories(${CURL_INCLUDE_DIR})
|
||||
find_package(CURL REQUIRED)
|
||||
add_subdirectory(src)
|
||||
install(TARGETS pengobot RUNTIME DESTINATION bin)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
add_executable(pengobot
|
||||
main.cpp
|
||||
)
|
||||
target_link_libraries(pengobot ${CURL_LIBRARIES} -static)
|
||||
target_link_libraries(pengobot curl -static-openssl -static-libgcc -static-libstdc++)
|
||||
|
|
Loading…
Reference in New Issue
Block a user