diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-07-04 01:20:59 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-07-04 01:22:14 +0200 |
commit | 93c1526bae5ae82d83a24b984e95fee142a47cc3 (patch) | |
tree | 3a3113be1d8e14a0d32f53a0c707bb5ce1ca70a2 /kcontrol/hwmanager | |
parent | 30613a47ae17d3df4ffcb17c91f939b9364846cc (diff) | |
download | tdebase-93c1526bae5ae82d83a24b984e95fee142a47cc3.tar.gz tdebase-93c1526bae5ae82d83a24b984e95fee142a47cc3.zip |
cmake: Use set_property( SOURCE ... COMPILE_DEFINITIONS )
instead of set_source_files_properties( ... COMPILE_FLAGS )
to avoid the problem of double escaping quotation marks.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 967cf90889abe8df9f6c262319a92a5c8a660f12)
Diffstat (limited to 'kcontrol/hwmanager')
-rw-r--r-- | kcontrol/hwmanager/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcontrol/hwmanager/CMakeLists.txt b/kcontrol/hwmanager/CMakeLists.txt index 584eba7bc..cf6fc74b9 100644 --- a/kcontrol/hwmanager/CMakeLists.txt +++ b/kcontrol/hwmanager/CMakeLists.txt @@ -29,7 +29,7 @@ install( FILES hwmanager.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) ##### kcm_iccconfig (module) #################### -set_source_files_properties( hwmanager.cpp PROPERTIES COMPILE_FLAGS -DKDE_CONFDIR=\\"${TDE_CONFIG_DIR}\\" ) +set_property( SOURCE hwmanager.cpp APPEND PROPERTY COMPILE_DEFINITIONS KDE_CONFDIR="${TDE_CONFIG_DIR}" ) tde_add_kpart( kcm_hwmanager AUTOMOC SOURCES |