From 9715bdfd444d0d384f976aa624bb113a8265695b Mon Sep 17 00:00:00 2001 From: Roy Eltham Date: Wed, 27 Feb 2013 10:01:04 -0800 Subject: [PATCH] Minor change to make project name compatible with VS 2010 Visual Studio 2010 doesn't like the '/' character in the project names. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33b717f..f47c68e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -146,7 +146,7 @@ if(MSVC) endforeach() endif() # - set(LABEL_SUFFIX "${LABEL_SUFFIX} ${LIB_RT_OPTION}") + set(LABEL_SUFFIX "${LABEL_SUFFIX} ${LIB_RT_SUFFIX}") # b) Change prefix for static libraries set(CMAKE_STATIC_LIBRARY_PREFIX "lib") # to distinguish static libraries from DLL import libs