mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 10:59:00 +08:00
e59f7400c3
* Update wxwidgets to 3.2.0 * Update portfile * Update wrapper for win32 * [cmake-user] Test wxwidgets on mingw * Fixup cmake config * Updated nanosvg patch * Handle search path for gtk3 link libs * Update versions * Remove obsolete option * Cleanup pkg-config setup * Update versions Co-authored-by: Tal Regev <tal.regev@gmail.com>
32 lines
1012 B
CMake
32 lines
1012 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
|
|
project(wxwidgets-example)
|
|
|
|
add_executable(main WIN32 popup.cpp)
|
|
|
|
find_package(wxWidgets REQUIRED)
|
|
target_compile_definitions(main PRIVATE ${wxWidgets_DEFINITIONS} "$<$<CONFIG:DEBUG>:${wxWidgets_DEFINITIONS_DEBUG}>")
|
|
target_include_directories(main PRIVATE ${wxWidgets_INCLUDE_DIRS})
|
|
target_link_libraries(main PRIVATE ${wxWidgets_LIBRARIES})
|
|
|
|
add_executable(main2 WIN32 popup.cpp)
|
|
|
|
find_package(wxWidgets CONFIG REQUIRED)
|
|
target_link_libraries(main2 PRIVATE wx::core wx::base)
|
|
|
|
option(USE_WXRC "Use the wxrc resource compiler" ON)
|
|
if(USE_WXRC)
|
|
execute_process(
|
|
COMMAND "${wxWidgets_wxrc_EXECUTABLE}" --help
|
|
RESULTS_VARIABLE error_result
|
|
)
|
|
if(error_result)
|
|
message(FATAL_ERROR "Failed to run wxWidgets_wxrc_EXECUTABLE (${wxWidgets_wxrc_EXECUTABLE})")
|
|
endif()
|
|
endif()
|
|
|
|
set(PRINT_VARS "" CACHE STRING "Variables to print at the end of configuration")
|
|
foreach(var IN LISTS PRINT_VARS)
|
|
message(STATUS "${var}:=${${var}}")
|
|
endforeach()
|