null+****@clear*****
null+****@clear*****
2012年 4月 13日 (金) 15:14:08 JST
Kouhei Sutou 2012-04-13 15:14:08 +0900 (Fri, 13 Apr 2012)
New Revision: cee7af16c2bf370c08068b820f408221ac4fd8f3
Log:
cmake: remove needless ","
Modified files:
CMakeLists.txt
Modified: CMakeLists.txt (+2 -2)
===================================================================
--- CMakeLists.txt 2012-04-13 15:12:23 +0900 (9b9da12)
+++ CMakeLists.txt 2012-04-13 15:14:08 +0900 (035f59c)
@@ -78,7 +78,7 @@ if(WITH_ZLIB)
if (NOT HAVE_Z)
message(FATAL_ERROR "No libz found")
endif()
- set(ZLIB_LIBS, "z")
+ set(ZLIB_LIBS "z")
endif()
option(WITH_LZO "use LZO for data compression." OFF)
@@ -87,7 +87,7 @@ if(WITH_LZO)
if (NOT HAVE_LZO2)
message(FATAL_ERROR "No liblzo2 found")
endif()
- set(LZO_LIBS, "lzo2")
+ set(LZO_LIBS "lzo2")
endif()
add_subdirectory(lib)