Fixed typos in CMakeLists.txt

This commit is contained in:
Palakis
2017-04-15 15:52:15 +02:00
parent af0ec74704
commit 9ba2e83857

View File

@ -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 ---