mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 16:21:48 -05:00
22 lines
No EOL
425 B
CMake
22 lines
No EOL
425 B
CMake
find_package(Qt6 REQUIRED COMPONENTS Core Widgets Multimedia Concurrent)
|
|
find_package(SDL2 REQUIRED)
|
|
|
|
add_executable(vanilla-gui
|
|
syncdialog.cpp
|
|
syncprogressdialog.cpp
|
|
vanilla.cpp
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(vanilla-gui PRIVATE
|
|
Qt6::Core
|
|
Qt6::Widgets
|
|
Qt6::Multimedia
|
|
Qt6::Concurrent
|
|
SDL2
|
|
vanilla
|
|
)
|
|
|
|
target_include_directories(vanilla-gui PRIVATE
|
|
"${CMAKE_SOURCE_DIR}/server"
|
|
) |