]> git.lyx.org Git - lyx.git/blobdiff - development/cmake/CMakeLists.txt
enable nls with option >all<, print instruction to enable nls
[lyx.git] / development / cmake / CMakeLists.txt
index 89c0528f89502450b28fbbdd98d70b44b821915d..294973a5625996b4b3e73c32dd81786dcb69f79a 100644 (file)
@@ -30,14 +30,8 @@ else(qt3)
 endif(qt3)     
 
 find_package(ZLIB REQUIRED)
-
-
-if(all OR nls)
-       find_package(ICONV REQUIRED)
-else(all OR nls)
-       find_package(ICONV)
-endif(all OR nls)
-set(nls)
+find_package(ICONV REQUIRED)
+add_definitions(-DHAVE_ICONV=1)
 
 if(all OR aspell)
        find_package(ASPELL REQUIRED)
@@ -47,12 +41,13 @@ endif(all OR aspell)
 set(aspell)
 
 message("")
-if(ICONV_FOUND)
-       add_definitions(-DENABLE_NLS=1 -DHAVE_ICONV=1)
-       message("----- Building with ENABLE_NLS and HAVE_ICONV")
-else(ICONV_FOUND)
-       message("----- No iconv found, to get more information use -Dnls=1")
-endif(ICONV_FOUND)
+if(nls OR all)
+       add_definitions(-DENABLE_NLS=1)
+       message("----- Building with ENABLE_NLS")
+else(nls OR all)       
+       message("----- No nls, to enable use -Dnls=1")
+endif(nls OR all)
+set(nls)
 if(ASPELL_FOUND)
        add_definitions(-DUSE_ASPELL=1)
        message("----- Building with USE_ASPELL")