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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-08-28 13:17:04 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-08-28 13:17:52 +0300
commit19c65cd6e2a61a4eec4aa8ea11128a4675aa34b1 (patch)
treeb65df485481a55ac4ee3cfe5a9f3005d75df5ecc /build_files/build_environment/CMakeLists.txt
parent5e8a030a08b73a1fbd94ed11dcc51d26f1c27dad (diff)
Build environment: Enable bzip2, lzma and sqlite for Python on Linux
Diffstat (limited to 'build_files/build_environment/CMakeLists.txt')
-rw-r--r--build_files/build_environment/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/build_files/build_environment/CMakeLists.txt b/build_files/build_environment/CMakeLists.txt
index a334adc34ff..512d2567754 100644
--- a/build_files/build_environment/CMakeLists.txt
+++ b/build_files/build_environment/CMakeLists.txt
@@ -138,7 +138,10 @@ if(NOT WIN32 OR ENABLE_MINGW64)
endif()
if(UNIX AND NOT APPLE)
+ include(cmake/bzip2.cmake)
+ include(cmake/lzma.cmake)
include(cmake/ssl.cmake)
+ include(cmake/sqlite.cmake)
endif()
include(cmake/harvest.cmake)