mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 12:37:48 +01:00
16 lines
450 B
CMake
16 lines
450 B
CMake
|
|
find_package(wxWidgets REQUIRED COMPONENTS net core base webview)
|
|
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
|
|
src/DhfsGuiInstance.cpp
|
|
src/DhfsGuiInstance.hpp
|
|
)
|
|
|
|
target_link_libraries(launcher ${wxWidgets_LIBRARIES})
|
|
target_link_libraries(launcher backend utils) |