cmake: verbose makefiles also for mingw

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24343 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2008-04-19 09:19:30 +00:00
parent eee0ebdff2
commit eaa86aaaf7

View File

@ -89,11 +89,13 @@ else()
set(library_type STATIC) set(library_type STATIC)
endif() endif()
if(UNIX) if(NOT MSVC)
if(NOT quiet) if(NOT quiet)
set(CMAKE_VERBOSE_MAKEFILE ON CACHE TYPE STRING FORCE) set(CMAKE_VERBOSE_MAKEFILE ON CACHE TYPE STRING FORCE)
message(STATUS "verbose Makefile, disable with -Dquiet=1") message(STATUS "verbose Makefile, disable with -Dquiet=1")
message(STATUS "") message(STATUS "")
else()
set(CMAKE_VERBOSE_MAKEFILE OFF CACHE TYPE STRING FORCE)
endif() endif()
set(LYX_CXX_FLAGS -Wall) set(LYX_CXX_FLAGS -Wall)
if(stdlib-debug) if(stdlib-debug)