summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-09-23 15:13:59 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-09-23 15:47:25 +0200
commit683fd757007ade08aebe9c81e089f121d7ec3ec2 (patch)
treeb9cc2cf5518dee265370fe78d6632333e228a674 /third_party
parentTranslated using Weblate (Russian) (diff)
downloadnheko-683fd757007ade08aebe9c81e089f121d7ec3ec2.tar.xz
More granular automoc
Diffstat (limited to 'third_party')
-rw-r--r--third_party/SingleApplication-3.3.2/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/third_party/SingleApplication-3.3.2/CMakeLists.txt b/third_party/SingleApplication-3.3.2/CMakeLists.txt

index ae1b1439..0dc8d3e1 100644 --- a/third_party/SingleApplication-3.3.2/CMakeLists.txt +++ b/third_party/SingleApplication-3.3.2/CMakeLists.txt
@@ -2,13 +2,12 @@ cmake_minimum_required(VERSION 3.7.0) project(SingleApplication LANGUAGES CXX) -set(CMAKE_AUTOMOC ON) - add_library(${PROJECT_NAME} STATIC singleapplication.cpp singleapplication_p.cpp ) add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS ${PROJECT_NAME}) +set_target_properties(${PROJECT_NAME} PROPERTIES AUTOMOC ON) if(NOT QT_DEFAULT_MAJOR_VERSION) set(QT_DEFAULT_MAJOR_VERSION 5 CACHE STRING "Qt version to use (5 or 6), defaults to 5")