summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-04-15 00:59:58 -0500
committerAdam <Adam@anope.org>2013-04-15 01:00:45 -0500
commit16c124d34e43282da6c552739211f8d8aca04791 (patch)
tree4d082f07494d3c4b61877633048daf5743a0f4b9 /src/CMakeLists.txt
parentf08dbced60d59de28d13efee2e19097e0b42f4c7 (diff)
Rewrote modules/CMakeLists.txt and do not build the 'extras' modules, if users want them built they should copy or symlink them out of extras
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index e2dbb6c71..be3f1010f 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -36,11 +36,8 @@ set(EXTRA_INCLUDES)
foreach(SRC ${SRC_SRCS})
# Temporary variable for the current source's include directories
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 MODULE TEMP_INCLUDES)
+ calculate_depends(${SRC} TEMP_INCLUDES)
# If there were some extra include directories, add them to the list
if(TEMP_INCLUDES)
append_to_list(EXTRA_INCLUDES ${TEMP_INCLUDES})