summaryrefslogtreecommitdiff
path: root/deps/recastnavigation/Recast
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2019-04-02 03:41:08 +0700
committerFrancesco Borzì <borzifrancesco@gmail.com>2019-04-01 22:41:08 +0200
commiteae9affec99181cec14fa4fd0449bb9f8e02565f (patch)
tree26b106ea2f6268cd2e4e75b63de6e4a0322aaead /deps/recastnavigation/Recast
parent0f174eff0142c60d3c631c23b5348d3f43fd444b (diff)
feat(Cmake): Rewrite build and use inherited dependencies (#1652)
Diffstat (limited to 'deps/recastnavigation/Recast')
-rw-r--r--deps/recastnavigation/Recast/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/deps/recastnavigation/Recast/CMakeLists.txt b/deps/recastnavigation/Recast/CMakeLists.txt
index f1605b5f69..5f574a485a 100644
--- a/deps/recastnavigation/Recast/CMakeLists.txt
+++ b/deps/recastnavigation/Recast/CMakeLists.txt
@@ -1,4 +1,5 @@
# Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
+# Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL3 v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
@@ -30,6 +31,9 @@ endif()
add_library(Recast STATIC ${Recast_STAT_SRCS})
+# Group sources
+GroupSources(${CMAKE_CURRENT_SOURCE_DIR})
+
target_include_directories(Recast
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/Include)
@@ -41,4 +45,4 @@ target_link_libraries(Recast
set_target_properties(Recast
PROPERTIES
FOLDER
- "dep")
+ "deps")