mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-01-31 16:14:05 -05:00
7 lines
350 B
Plaintext
Executable File
7 lines
350 B
Plaintext
Executable File
The package wxwidgets provides CMake integration:
|
|
|
|
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})
|