From 9ba2e838573b6b0114469d3a8f7b8e24864004a6 Mon Sep 17 00:00:00 2001 From: Palakis Date: Sat, 15 Apr 2017 15:52:15 +0200 Subject: [PATCH] Fixed typos in CMakeLists.txt --- CMakeLists.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c9faab21..6aa1bab8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ if(WIN32) set(OBS_FRONTEND_LIB "OBS_FRONTEND_LIB-NOTFOUND" CACHE FILEPATH "OBS frontend library") message(FATAL_ERROR "Could not find OBS Frontend API\'s library !") endif() - + target_link_libraries(obs-websocket "${OBS_FRONTEND_LIB}") @@ -118,13 +118,12 @@ if(UNIX AND NOT APPLE) target_link_libraries(obs-websocket obs-frontend-api) - file(GLOB LOCALE_FILES data/locale/*.ini) + file(GLOB locale_files data/locale/*.ini) install(TARGETS obs-websocket - LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/obs-plugins) - install(FILES ${LOCALE_FILES} + LIBRARY DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/obs-plugins") + install(FILES ${locale_files} DESTINATION "${CMAKE_INSTALL_PREFIX}/share/obs/obs-plugins/obs-websocket/locale") - } endif() # --- End of section ---