summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAdam <adam@sigterm.info>2017-03-19 18:56:47 -0400
committerGitHub <noreply@github.com>2017-03-19 18:56:47 -0400
commitc736ba71a5fb6eb51d1e63e00a1ca623c12e0504 (patch)
tree9d3c6c3ed442386eb465b65a720adcc6374aa1a1 /modules
parent2a886acbedb6b6386dbff3e591b0d4035d516b2a (diff)
parent2de964ffa42221d5d1ad73643dfc46f6fe318021 (diff)
Merge pull request #186 from SaberUK/master+cmake-cleanup
Some minor build system improvements.
Diffstat (limited to 'modules')
-rw-r--r--modules/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt
index 4a2781caa..0422be7f7 100644
--- a/modules/CMakeLists.txt
+++ b/modules/CMakeLists.txt
@@ -15,7 +15,7 @@ macro(build_modules SRC)
string(REGEX MATCH "\\.c$" ANOPE18MODULE ${MODULE_SRC})
if(ANOPE18MODULE)
message(FATAL_ERROR "Anope 1 modules are not compatible with Anope 2!\nOffending module: ${MODULE_SRC}")
- endif(ANOPE18MODULE)
+ endif()
string(REGEX MATCH "\\.cpp$" CPP ${MODULE_SRC})
if(CPP)
set_source_files_properties(${MODULE_SRC} PROPERTIES LANGUAGE CXX COMPILE_FLAGS "${CXXFLAGS}")
@@ -155,7 +155,7 @@ macro(build_subdir)
if(APPLE)
# Mark undefined symbols as having to be looked up at runtime
set(MOD_EXTRA_LDFLAGS "-undefined dynamic_lookup")
- endif(APPLE)
+ endif()
# Generate the module and set its linker flags, also set it to depend on the main Anope executable to be built beforehand
add_library(${SO} SHARED ${MODULES_SUBDIR_SRCS})