mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-05 17:46:28 +02:00
8 lines
279 B
CMake
8 lines
279 B
CMake
|
|
find_package(wxWidgets COMPONENTS core base REQUIRED)
|
|
|
|
include(${wxWidgets_USE_FILE})
|
|
add_executable(wxwidgets_example main.cpp MyHalfMove.cpp)
|
|
target_link_libraries(wxwidgets_example cgeditor ${wxWidgets_LIBRARIES})
|
|
target_link_libraries(wxwidgets_example ChessMoveInterface)
|
|
|