Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/shader/CMakeLists.txt
| Show First 20 Lines • Show All 126 Lines • ▼ Show 20 Lines | |||||
| ) | ) | ||||
| set(LIB | set(LIB | ||||
| bf_functions | bf_functions | ||||
| bf_intern_sky | bf_intern_sky | ||||
| bf_nodes | bf_nodes | ||||
| ) | ) | ||||
| 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_FREESTYLE) | if(WITH_FREESTYLE) | ||||
| add_definitions(-DWITH_FREESTYLE) | add_definitions(-DWITH_FREESTYLE) | ||||
| endif() | endif() | ||||
| if(WITH_TBB) | if(WITH_TBB) | ||||
| 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 | ||||
| Show All 21 Lines | |||||