mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-29 04:57:48 +01:00
14 lines
378 B
CMake
14 lines
378 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 utils) |