diff options
author | Shauren <shauren.trinity@gmail.com> | 2017-03-26 22:17:59 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2017-03-26 22:17:59 +0200 |
commit | 2dc88c70f8a81ed5d7052c44e4ff195f3af7e752 (patch) | |
tree | 657a0a84d1e53073038f79e3aa7ef80c138c4e92 | |
parent | 19a0e055b9b5f9cbc782b869f2708a144d80c732 (diff) |
Core: Only build Recast with tools selected
-rw-r--r-- | dep/recastnavigation/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dep/recastnavigation/CMakeLists.txt b/dep/recastnavigation/CMakeLists.txt index ab2c5618bfd..a7c4aa70186 100644 --- a/dep/recastnavigation/CMakeLists.txt +++ b/dep/recastnavigation/CMakeLists.txt @@ -17,4 +17,6 @@ # add_subdirectory(Detour) -add_subdirectory(Recast) +if(TOOLS) + add_subdirectory(Recast) +endif() |