summaryrefslogtreecommitdiff
path: root/src/tools
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/tools
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/tools')
-rw-r--r--src/tools/CMakeLists.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt
index 88e03f615..8d66e577f 100644
--- a/src/tools/CMakeLists.txt
+++ b/src/tools/CMakeLists.txt
@@ -9,11 +9,8 @@ set_source_files_properties(${TOOLS_SRCS} PROPERTIES LANGUAGE CXX COMPILE_FLAGS
foreach(SRC ${TOOLS_SRCS})
# Convert the source file extension to have no extension
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 MODULE)
+ calculate_depends(${SRC})
# 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