9 lines
249 B
CMake
9 lines
249 B
CMake
|
cmake_minimum_required(VERSION 3.20)
|
||
|
project(wxTest)
|
||
|
|
||
|
find_package(wxWidgets REQUIRED gl core base OPTIONAL_COMPONENTS net)
|
||
|
include(${wxWidgets_USE_FILE})
|
||
|
|
||
|
add_executable(wxTest main.cpp)
|
||
|
target_link_libraries(wxTest PRIVATE ${wxWidgets_LIBRARIES})
|