Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
cmake: add quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
eszlari authored and derat committed Jan 8, 2021
1 parent db54639 commit 40a2419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install(TARGETS xsettingsd dump_xsettings DESTINATION ${CMAKE_INSTALL_BINDIR})
install(FILES xsettingsd.1 dump_xsettings.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)

configure_file(xsettingsd.service.in xsettingsd.service)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/xsettingsd.service DESTINATION lib/systemd/user)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/xsettingsd.service" DESTINATION lib/systemd/user)

if(GTEST_FOUND AND BUILD_TESTING)
include(GoogleTest)
Expand All @@ -52,4 +52,4 @@ if(GTEST_FOUND AND BUILD_TESTING)
gtest_discover_tests(setting_test)
endif()

add_custom_target(uninstall COMMAND xargs rm -v < ${CMAKE_BINARY_DIR}/install_manifest.txt)
add_custom_target(uninstall COMMAND xargs rm -v < "${CMAKE_BINARY_DIR}/install_manifest.txt")

0 comments on commit 40a2419

Please sign in to comment.