diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/KDE4Defaults.cmake | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/KDE4Defaults.cmake b/modules/KDE4Defaults.cmake index 04c0ae2c..9663f089 100644 --- a/modules/KDE4Defaults.cmake +++ b/modules/KDE4Defaults.cmake @@ -18,10 +18,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # since cmake 2.4.1 set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON) -# Use colored output -# since cmake 2.4.0 -set(CMAKE_COLOR_MAKEFILE ON) - # define the generic version of the libraries here # this makes it easy to advance it when the next KDE release comes # Use this version number for libraries which are at version n in KDE version n @@ -35,8 +31,8 @@ set(KDE_NON_GENERIC_LIB_SOVERSION "5") # windows does not support LD_LIBRARY_PATH or similar # all searchable directories has to be defined by the PATH environment var # to reduce the number of required pathes executables are placed into -# the build bin dir +# the build bin dir if (WIN32) set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) # set (LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) -endif(WIN32) +endif(WIN32) |