diff options
author | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2008-07-23 18:19:11 +0000 |
---|---|---|
committer | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2008-07-23 18:19:11 +0000 |
commit | 0021044744fe12e9f601eb37207d31be277466d0 (patch) | |
tree | c628ecb0609f9b19f88dee9eeff4c515222831e4 /modules | |
parent | 520c0acdb8b9f93f54a18a73ef203ec7e9e44756 (diff) | |
download | extra-cmake-modules-0021044744fe12e9f601eb37207d31be277466d0.tar.gz extra-cmake-modules-0021044744fe12e9f601eb37207d31be277466d0.tar.bz2 |
enable KDE4_ENABLE_EXPERIMENTAL_LIB for windows too - kdelibs compiles fine with this option
svn path=/trunk/KDE/kdelibs/; revision=837076
Diffstat (limited to 'modules')
-rw-r--r-- | modules/FindKDE4Internal.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index a4173664..ed2eb31b 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -506,14 +506,14 @@ option(KDE4_ENABLE_HTMLHANDBOOK "Create targets htmlhandbook for creating the h # won't have an effect set(KDE4_DISABLE_PROPERTY_ "DISABLED_") -if(UNIX )# AND NOT APPLE) +if(UNIX OR WIN32)# AND NOT APPLE) option(KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT "Enable the experimental reduced library exports" FALSE) # If enabled, make it empty, so the property will keep it's actual name. # and the LINK_INTERFACE_LIBRARIES property will be set. if (KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT) set(KDE4_DISABLE_PROPERTY_ ) endif (KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT) -endif(UNIX)# AND NOT APPLE) +endif(UNIX OR WIN32)# AND NOT APPLE) if( KDE4_ENABLE_FINAL) |