summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-04-06 19:03:07 -0500
committerAdam <Adam@anope.org>2013-04-06 19:03:07 -0500
commitccecfdf44506d97874cdd1bc8b73a273188310c4 (patch)
tree230e6abb8e14bf2471054c37e2db568b513a8093 /src/tools
parent32d1184c00bdb43d3cf892b721c2906b2ddc1a14 (diff)
Made the missing dependencies message from cmake more descriptive for modules
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt
index 613e4ffc6..962849d8b 100644
--- a/src/tools/CMakeLists.txt
+++ b/src/tools/CMakeLists.txt
@@ -11,8 +11,9 @@ foreach(SRC ${TOOLS_SRCS})
string(REGEX REPLACE "\\.cpp$" "" EXE ${SRC})
# Create skip variable
set(SKIP)
+ set(MODULE FALSE)
# Calculate the header file dependencies for the given source file
- calculate_depends(${SRC} SKIP TRUE)
+ calculate_depends(${SRC} SKIP MODULE)
# Only continue if this file isn't skipped
if(NOT SKIP)
# Generate the executable and set its linker flags, also set it to depend on the main Anope executable to be built beforehand