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>2012-05-29 14:31:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-29 14:31:42 +0400
commit0b7593a3dc22552396a02fd06bd9cc2d6151af74 (patch)
tree7dbb673782c65bf3485548e2c85d66b4be36c376 /source/creator
parent16117143d8f12dac65caa8368f56a7e8af8f0db2 (diff)
finish cleanup for plugins
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt17
-rw-r--r--source/creator/creator.c2
2 files changed, 0 insertions, 19 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 02d19398a7a..74ccda8ce0e 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -395,14 +395,6 @@ if(UNIX AND NOT APPLE)
)
endif()
- # plugins in blender 2.6 don't work at the moment.
- #
- # install(
- # DIRECTORY ${CMAKE_SOURCE_DIR}/release/plugins
- # DESTINATION ${TARGETDIR_VER}
- # PATTERN ".svn" EXCLUDE
- # )
-
if(WITH_PYTHON)
if(WITH_PYTHON_INSTALL)
# on some platforms (like openSUSE) Python is linked
@@ -482,14 +474,6 @@ elseif(WIN32)
endif()
endif()
- # plugins in blender 2.6 don't work at the moment.
- #
- # install(
- # DIRECTORY ${CMAKE_SOURCE_DIR}/release/plugins
- # DESTINATION ${TARGETDIR_VER}
- # PATTERN ".svn" EXCLUDE
- # )
-
if(WITH_PYTHON)
set_lib_path(PYLIB "python/lib")
install(
@@ -857,7 +841,6 @@ endif()
bf_blenlib
bf_intern_ghost
bf_intern_string
- bf_blenpluginapi
bf_avi
bf_imbuf_cineon
bf_imbuf_openexr
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 4294ddc8feb..0cdbeb940b8 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -261,7 +261,6 @@ static int print_help(int UNUSED(argc), const char **UNUSED(argv), void *data)
BLI_argsPrintArgDoc(ba, "--env-system-config");
BLI_argsPrintArgDoc(ba, "--env-system-datafiles");
BLI_argsPrintArgDoc(ba, "--env-system-scripts");
- BLI_argsPrintArgDoc(ba, "--env-system-plugins");
BLI_argsPrintArgDoc(ba, "--env-system-python");
printf("\n");
BLI_argsPrintArgDoc(ba, "-nojoystick");
@@ -1136,7 +1135,6 @@ static void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle)
/* TODO, add user env vars? */
BLI_argsAdd(ba, 1, NULL, "--env-system-datafiles", "\n\tSet the "STRINGIFY_ARG (BLENDER_SYSTEM_DATAFILES)" environment variable", set_env, NULL);
BLI_argsAdd(ba, 1, NULL, "--env-system-scripts", "\n\tSet the "STRINGIFY_ARG (BLENDER_SYSTEM_SCRIPTS)" environment variable", set_env, NULL);
- BLI_argsAdd(ba, 1, NULL, "--env-system-plugins", "\n\tSet the "STRINGIFY_ARG (BLENDER_SYSTEM_PLUGINS)" environment variable", set_env, NULL);
BLI_argsAdd(ba, 1, NULL, "--env-system-python", "\n\tSet the "STRINGIFY_ARG (BLENDER_SYSTEM_PYTHON)" environment variable", set_env, NULL);
/* second pass: custom window stuff */