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.