mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 20:47:49 +01:00
14 lines
372 B
CMake
14 lines
372 B
CMake
|
|
find_package(wxWidgets REQUIRED COMPONENTS net core base)
|
|
if (wxWidgets_USE_FILE) # not defined in CONFIG mode
|
|
include(${wxWidgets_USE_FILE})
|
|
endif ()
|
|
|
|
add_executable(launcher
|
|
src/LauncherApp.cpp
|
|
src/GLauncherApp.cpp
|
|
src/LauncherAppMainFrame.cpp
|
|
)
|
|
|
|
target_link_libraries(launcher ${wxWidgets_LIBRARIES})
|
|
target_link_libraries(launcher backend) |