mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-23 20:47:45 +00:00
13 lines
391 B
CMake
13 lines
391 B
CMake
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
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)
|