aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/CMakeLists.txt3
-rw-r--r--src/const.h2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 10c7066..c647937 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -8,6 +8,9 @@ add_compile_definitions(_GNU_SOURCE)
add_compile_definitions(VERSION="${PROJECT_VERSION}")
+set(DEFAULT_HOST "127.0.0.1" CACHE STRING "Set the default --host value")
+add_compile_definitions(DEFAULT_HOST="${DEFAULT_HOST}")
+
function(add_my_executable name)
list(POP_FRONT ARGV)
add_executable("${name}" ${ARGV})
diff --git a/src/const.h b/src/const.h
index 53b0364..8ac2e33 100644
--- a/src/const.h
+++ b/src/const.h
@@ -1,7 +1,9 @@
#ifndef __CONST_H__
#define __CONST_H__
+#ifndef DEFAULT_HOST
#define DEFAULT_HOST "127.0.0.1"
+#endif
#define DEFAULT_PORT "5556"
#endif