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:21:47 +0200 |
commit | 967cf90889abe8df9f6c262319a92a5c8a660f12 (patch) | |
tree | 404b812ddfa9e8d85e7250d344abaaba28cde4e3 /kcontrol/displayconfig | |
parent | a359fef24e132b22b7a1667f826b0fb1bddf331f (diff) | |
download | tdebase-967cf90889abe8df9f6c262319a92a5c8a660f12.tar.gz tdebase-967cf90889abe8df9f6c262319a92a5c8a660f12.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>
Diffstat (limited to 'kcontrol/displayconfig')
-rw-r--r-- | kcontrol/displayconfig/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcontrol/displayconfig/CMakeLists.txt b/kcontrol/displayconfig/CMakeLists.txt index dfa45882b..a4d26960d 100644 --- a/kcontrol/displayconfig/CMakeLists.txt +++ b/kcontrol/displayconfig/CMakeLists.txt @@ -31,7 +31,7 @@ install( FILES displayconfig.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) ##### kcm_displayconfig (module) #################### -set_source_files_properties( displayconfig.cpp PROPERTIES COMPILE_FLAGS -DKDE_CONFDIR=\\"${TDE_CONFIG_DIR}\\" ) +set_property( SOURCE displayconfig.cpp APPEND PROPERTY COMPILE_DEFINITIONS KDE_CONFDIR="${TDE_CONFIG_DIR}" ) tde_add_kpart( kcm_displayconfig AUTOMOC SOURCES |