mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-29 23:17:46 +00:00
14 lines
421 B
CMake
14 lines
421 B
CMake
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
add_executable(novus-launcher)
|
|
target_sources(novus-launcher PRIVATE
|
|
src/main.cpp
|
|
src/mainwindow.cpp)
|
|
target_link_libraries(novus-launcher
|
|
PRIVATE
|
|
Novus::Common
|
|
Physis::Physis
|
|
KF6::ConfigCore
|
|
Qt6::Widgets)
|
|
target_include_directories(novus-launcher PUBLIC include)
|