diff --git a/dmg/CMakeLists.txt b/dmg/CMakeLists.txt index a7cebfb..de1c4cb 100644 --- a/dmg/CMakeLists.txt +++ b/dmg/CMakeLists.txt @@ -34,5 +34,5 @@ target_link_libraries (dmg-bin dmg) set_target_properties(dmg-bin PROPERTIES OUTPUT_NAME "dmg") -install(TARGETS dmg-bin DESTINATION .) +install(TARGETS dmg-bin DESTINATION bin) diff --git a/hdutil/CMakeLists.txt b/hdutil/CMakeLists.txt index 4c1750a..f0d8ac9 100644 --- a/hdutil/CMakeLists.txt +++ b/hdutil/CMakeLists.txt @@ -4,5 +4,5 @@ add_executable(hdutil hdutil.c) target_link_libraries (hdutil dmg hfs common) -install(TARGETS hdutil DESTINATION .) +install(TARGETS hdutil DESTINATION bin) diff --git a/hfs/CMakeLists.txt b/hfs/CMakeLists.txt index 379316d..74cc1d9 100644 --- a/hfs/CMakeLists.txt +++ b/hfs/CMakeLists.txt @@ -5,5 +5,5 @@ target_link_libraries(hfs common) add_executable(hfsplus hfs.c) target_link_libraries (hfsplus hfs) -install(TARGETS hfsplus DESTINATION .) +install(TARGETS hfsplus DESTINATION bin)