Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/CMakeLists.txt
| Show First 20 Lines • Show All 96 Lines • ▼ Show 20 Lines | if(WITH_BULLET) | ||||
| endif() | endif() | ||||
| list(APPEND LIB | list(APPEND LIB | ||||
| ${BULLET_LIBRARIES} | ${BULLET_LIBRARIES} | ||||
| ) | ) | ||||
| add_definitions(-DWITH_BULLET) | add_definitions(-DWITH_BULLET) | ||||
| endif() | endif() | ||||
| if(WITH_PYTHON) | |||||
| list(APPEND INC | |||||
| ../python | |||||
| ) | |||||
| list(APPEND INC_SYS | |||||
| ${PYTHON_INCLUDE_DIRS} | |||||
| ) | |||||
| list(APPEND LIB | |||||
| ${PYTHON_LINKFLAGS} | |||||
| ${PYTHON_LIBRARIES} | |||||
| ) | |||||
| add_definitions(-DWITH_PYTHON) | |||||
| endif() | |||||
| if(WITH_TBB) | if(WITH_TBB) | ||||
| list(APPEND INC_SYS | list(APPEND INC_SYS | ||||
| ${TBB_INCLUDE_DIRS} | ${TBB_INCLUDE_DIRS} | ||||
| ) | ) | ||||
| add_definitions(-DWITH_TBB) | add_definitions(-DWITH_TBB) | ||||
| if(WIN32) | if(WIN32) | ||||
| # TBB includes Windows.h which will define min/max macros | # TBB includes Windows.h which will define min/max macros | ||||
| # that will collide with the stl versions. | # that will collide with the stl versions. | ||||
| ▲ Show 20 Lines • Show All 41 Lines • Show Last 20 Lines | |||||