mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
36 lines
1.1 KiB
CMake
36 lines
1.1 KiB
CMake
|
cmake_minimum_required(VERSION 3.0.0)
|
||
|
project(wxhelper VERSION 1.0.0)
|
||
|
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 17)
|
||
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||
|
|
||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D '0_UNICODE' /D 'UNICODE'")
|
||
|
|
||
|
file(GLOB CPP_FILES ${PROJECT_SOURCE_DIR}/src/*.cc ${PROJECT_SOURCE_DIR}/src/*.cpp)
|
||
|
|
||
|
|
||
|
|
||
|
include_directories(c:/soft/vcpkg/installed/x86-windows/include)
|
||
|
|
||
|
# add_subdirectory(3rd)
|
||
|
|
||
|
|
||
|
find_package(nlohmann_json CONFIG REQUIRED)
|
||
|
find_package(unofficial-mongoose CONFIG REQUIRED)
|
||
|
|
||
|
add_library(wxhelper SHARED ${CPP_FILES} )
|
||
|
|
||
|
|
||
|
#target_include_directories(wxhelper PUBLIC 3rd/mongoose )
|
||
|
|
||
|
target_link_libraries(wxhelper PRIVATE nlohmann_json::nlohmann_json)
|
||
|
target_link_libraries(wxhelper PRIVATE unofficial::mongoose::mongoose)
|
||
|
|
||
|
SET_TARGET_PROPERTIES(wxhelper PROPERTIES LINKER_LANGUAGE C
|
||
|
ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
|
||
|
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
|
||
|
RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib
|
||
|
OUTPUT_NAME "wxhelper"
|
||
|
PREFIX "")
|
||
|
|