summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
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/CMakeLists.txt
parent32d1184c00bdb43d3cf892b721c2906b2ddc1a14 (diff)
Made the missing dependencies message from cmake more descriptive for modules
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index d2bc9f050..e2dbb6c71 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -38,8 +38,9 @@ foreach(SRC ${SRC_SRCS})
set(TEMP_INCLUDES)
# Create unused skip variable
set(SKIP)
+ set(MODULE FALSE)
# Calculate the header file dependencies for the given source file
- calculate_depends(${SRC} SKIP TRUE TEMP_INCLUDES)
+ calculate_depends(${SRC} SKIP MODULE TEMP_INCLUDES)
# If there were some extra include directories, add them to the list
if(TEMP_INCLUDES)
append_to_list(EXTRA_INCLUDES ${TEMP_INCLUDES})