Fixed errors (missing double-quotes) in VS 2010 project files generated by CMake, for static build

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1688 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-11-20 22:30:14 +00:00
parent 83c580f9b4
commit 7559f0669f
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ macro(sfml_static_add_libraries target)
# around paths because they may contain spaces
set(LIBRARIES "${LIBRARIES} &quot\\;${lib}&quot\\;")
else()
set(LIBRARIES "${LIBRARIES} ${lib}")
set(LIBRARIES "${LIBRARIES} \"${lib}\"")
endif()
endforeach()
set_target_properties(${target} PROPERTIES STATIC_LIBRARY_FLAGS ${LIBRARIES})

View File

@ -126,7 +126,7 @@ public :
Thread(void(C::*function)(), C* object);
////////////////////////////////////////////////////////////
/// \brief destructor
/// \brief Destructor
///
/// This destructor calls Wait(), so that the internal thread
/// cannot survive after its sf::Thread instance is destroyed.