Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_app_build_options.c
| Show First 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | static PyStructSequence_Field app_builtopts_info_fields[] = { | ||||
| {(char *)"input_ndof", NULL}, | {(char *)"input_ndof", NULL}, | ||||
| {(char *)"audaspace", NULL}, | {(char *)"audaspace", NULL}, | ||||
| {(char *)"international", NULL}, | {(char *)"international", NULL}, | ||||
| {(char *)"openal", NULL}, | {(char *)"openal", NULL}, | ||||
| {(char *)"sdl", NULL}, | {(char *)"sdl", NULL}, | ||||
| {(char *)"sdl_dynload", NULL}, | {(char *)"sdl_dynload", NULL}, | ||||
| {(char *)"jack", NULL}, | {(char *)"jack", NULL}, | ||||
| {(char *)"libmv", NULL}, | {(char *)"libmv", NULL}, | ||||
| {(char *)"mod_boolean", NULL}, | |||||
| {(char *)"mod_fluid", NULL}, | {(char *)"mod_fluid", NULL}, | ||||
| {(char *)"mod_oceansim", NULL}, | {(char *)"mod_oceansim", NULL}, | ||||
| {(char *)"mod_remesh", NULL}, | {(char *)"mod_remesh", NULL}, | ||||
| {(char *)"mod_smoke", NULL}, | {(char *)"mod_smoke", NULL}, | ||||
| {(char *)"collada", NULL}, | {(char *)"collada", NULL}, | ||||
| {(char *)"opencolorio", NULL}, | {(char *)"opencolorio", NULL}, | ||||
| {(char *)"player", NULL}, | {(char *)"player", NULL}, | ||||
| {(char *)"openmp", NULL}, | {(char *)"openmp", NULL}, | ||||
| ▲ Show 20 Lines • Show All 162 Lines • ▼ Show 20 Lines | |||||
| #endif | #endif | ||||
| #ifdef WITH_LIBMV | #ifdef WITH_LIBMV | ||||
| SetObjIncref(Py_True); | SetObjIncref(Py_True); | ||||
| #else | #else | ||||
| SetObjIncref(Py_False); | SetObjIncref(Py_False); | ||||
| #endif | #endif | ||||
| #ifdef WITH_MOD_BOOLEAN | |||||
| SetObjIncref(Py_True); | |||||
| #else | |||||
| SetObjIncref(Py_False); | |||||
| #endif | |||||
| #ifdef WITH_MOD_FLUID | #ifdef WITH_MOD_FLUID | ||||
| SetObjIncref(Py_True); | SetObjIncref(Py_True); | ||||
| #else | #else | ||||
| SetObjIncref(Py_False); | SetObjIncref(Py_False); | ||||
| #endif | #endif | ||||
| #ifdef WITH_OCEANSIM | #ifdef WITH_OCEANSIM | ||||
| SetObjIncref(Py_True); | SetObjIncref(Py_True); | ||||
| ▲ Show 20 Lines • Show All 72 Lines • Show Last 20 Lines | |||||