mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
13 lines
293 B
Text
13 lines
293 B
Text
|
cmake_minimum_required(VERSION 3.7.0)
|
||
|
|
||
|
project(basic LANGUAGES CXX)
|
||
|
|
||
|
# SingleApplication base class
|
||
|
set(QAPPLICATION_CLASS QCoreApplication)
|
||
|
add_subdirectory(../.. SingleApplication)
|
||
|
|
||
|
add_executable(basic main.cpp)
|
||
|
|
||
|
target_link_libraries(${PROJECT_NAME} SingleApplication::SingleApplication)
|
||
|
|