From 7559f0669fff58c90996aa17cec36f3f7dba114a Mon Sep 17 00:00:00 2001 From: LaurentGom Date: Sat, 20 Nov 2010 22:30:14 +0000 Subject: [PATCH] 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 --- cmake/Macros.cmake | 2 +- include/SFML/System/Thread.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Macros.cmake b/cmake/Macros.cmake index ba61e24c..95613ebd 100644 --- a/cmake/Macros.cmake +++ b/cmake/Macros.cmake @@ -38,7 +38,7 @@ macro(sfml_static_add_libraries target) # around paths because they may contain spaces set(LIBRARIES "${LIBRARIES} "\\;${lib}"\\;") else() - set(LIBRARIES "${LIBRARIES} ${lib}") + set(LIBRARIES "${LIBRARIES} \"${lib}\"") endif() endforeach() set_target_properties(${target} PROPERTIES STATIC_LIBRARY_FLAGS ${LIBRARIES}) diff --git a/include/SFML/System/Thread.hpp b/include/SFML/System/Thread.hpp index 8ec56b17..938f46ae 100644 --- a/include/SFML/System/Thread.hpp +++ b/include/SFML/System/Thread.hpp @@ -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.