Skip to content

Commit 184b2af

Browse files
committed
cmake: change install-conf script with configure_file()
in this way, If the input file is modified the build system will re-run CMake to re-configure the file and generate the build system again.
1 parent 0e5049c commit 184b2af

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

conf/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ install(FILES "${CUSTOM_CONF_DIR}/sdr.conf" DESTINATION share/doc/${CMAKE_PROJEC
3939
if(NOT WIN32)
4040
add_custom_target(install-conf
4141
COMMAND ${CMAKE_COMMAND}
42-
-DCMAKE_BINARY_DIR="${CMAKE_BINARY_DIR}"
42+
-DCUSTOM_BINARY_DIR="${CMAKE_BINARY_DIR}"
4343
-DCUSTOM_CONF_DIR="${CUSTOM_CONF_DIR}"
4444
-DCUSTOM_SCRIPTS_DIR="${CUSTOM_SCRIPTS_DIR}"
4545
-DCUSTOM_TELEMETRY_DIR="${CUSTOM_TELEMETRY_DIR}"

conf/install_conf.cmake

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
if(NOT EXISTS ~/direwolf.conf)
2-
install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ~)
1+
if(NOT EXISTS $ENV{HOME}/direwolf.conf)
2+
configure_file("${CUSTOM_BINARY_DIR}/direwolf.conf" $ENV{HOME})
33
endif()
44

5-
if(NOT EXISTS ~/sdr.conf)
6-
install(FILES "${CUSTOM_CONF_DIR}/sdr.conf" DESTINATION ~)
5+
if(NOT EXISTS $ENV{HOME}/sdr.conf)
6+
configure_file("${CUSTOM_CONF_DIR}/sdr.conf" $ENV{HOME})
77
endif()
88

9-
if(NOT EXISTS ~/dw-start.sh)
10-
install(FILES "${CUSTOM_SCRIPTS_DIR}/dw-start.sh" DESTINATION ~)
9+
if(NOT EXISTS $ENV{HOME}/dw-start.sh)
10+
configure_file("${CUSTOM_SCRIPTS_DIR}/dw-start.sh" $ENV{HOME})
1111
endif()
1212

13-
if(NOT EXISTS ~/telem-m0xer-3.txt)
14-
install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" DESTINATION ~)
13+
if(NOT EXISTS $ENV{HOME}/telem-m0xer-3.txt)
14+
configure_file("${CUSTOM_TELEMETRY_DIR}/telem-m0xer-3.txt" $ENV{HOME})
1515
endif()
1616

17-
if(NOT EXISTS ~/telem-balloon.conf)
18-
install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" DESTINATION ~)
17+
if(NOT EXISTS $ENV{HOME}/telem-balloon.conf)
18+
configure_file("${CUSTOM_TELEMETRY_DIR}/telem-balloon.conf" $ENV{HOME})
1919
endif()
2020

21-
if(NOT EXISTS ~/telem-volts.conf)
22-
install(FILES "${CUSTOM_TELEMETRY_DIR}/telem-volts.conf" DESTINATION ~)
21+
if(NOT EXISTS $ENV{HOME}/telem-volts.conf)
22+
configure_file("${CUSTOM_TELEMETRY_DIR}/telem-volts.conf" $ENV{HOME})
2323
endif()

0 commit comments

Comments
 (0)