Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-07-28 07:45:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-28 07:48:12 +0300
commit33bac1f40140748c5f8b3e045ba77a9618ada6e4 (patch)
tree82b687c3175a665102f1d260950bbda4bb9749c0 /CMakeLists.txt
parent6df3e3a9591975ea9442183b331f2ca99fdc9ae8 (diff)
CMake: use same defaults on all-platforms
Previously Linux had disabled libs that were enabled on other platforms. Use a reduced feature set on all, since libs such as Jack & OSL aren't totally reliable on Win/OSX. Keep 'option_defaults_init' since platform maintainers may want to adjust later.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 712e16df93a..5654eb3289a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -160,8 +160,11 @@ option_defaults_init(
_init_GAMEENGINE
)
+# NOTE: for now use same defaults on all platforms...
+# in future we may want to tweak per-platform
+
# customize...
-if(UNIX AND NOT APPLE)
+if (1)
# some of these libraries are problematic on Linux
# disable less important dependencies by default
set(_init_BUILDINFO OFF)