1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 12:37:45 +00:00
novus/sdklauncher/CMakeLists.txt

14 lines
391 B
Text
Raw Normal View History

2023-08-31 14:21:19 +02:00
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
# SPDX-License-Identifier: CC0-1.0
2023-08-31 14:18:50 +02:00
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5 COMPONENTS Widgets REQUIRED)
add_executable(sdklauncher
src/main.cpp
src/mainwindow.cpp)
target_link_libraries(sdklauncher PUBLIC Qt5::Widgets)
target_include_directories(sdklauncher PUBLIC include)