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:
Diffstat (limited to 'source/gameengine/Expressions/CMakeLists.txt')
-rw-r--r--source/gameengine/Expressions/CMakeLists.txt86
1 files changed, 46 insertions, 40 deletions
diff --git a/source/gameengine/Expressions/CMakeLists.txt b/source/gameengine/Expressions/CMakeLists.txt
index 6907f314503..6ab4d3fdacc 100644
--- a/source/gameengine/Expressions/CMakeLists.txt
+++ b/source/gameengine/Expressions/CMakeLists.txt
@@ -36,47 +36,53 @@ set(INC_SYS
)
set(SRC
- BoolValue.cpp
- ConstExpr.cpp
- EXP_C-Api.cpp
- EmptyValue.cpp
- ErrorValue.cpp
- Expression.cpp
- FloatValue.cpp
- IdentifierExpr.cpp
- IfExpr.cpp
- InputParser.cpp
- IntValue.cpp
- KX_HashedPtr.cpp
- ListValue.cpp
- Operator1Expr.cpp
- Operator2Expr.cpp
- PyObjectPlus.cpp
- StringValue.cpp
- Value.cpp
- VectorValue.cpp
+ intern/BoolValue.cpp
+ intern/ConstExpr.cpp
+ intern/EmptyValue.cpp
+ intern/ErrorValue.cpp
+ intern/Expression.cpp
+ intern/FloatValue.cpp
+ intern/IdentifierExpr.cpp
+ intern/IfExpr.cpp
+ intern/InputParser.cpp
+ intern/IntValue.cpp
+ intern/HashedPtr.cpp
+ intern/ListValue.cpp
+ intern/Operator1Expr.cpp
+ intern/Operator2Expr.cpp
+ intern/PyObjectPlus.cpp
+ intern/StringValue.cpp
+ intern/Value.cpp
+ intern/VectorValue.cpp
- BoolValue.h
- ConstExpr.h
- EXP_C-Api.h
- EmptyValue.h
- ErrorValue.h
- Expression.h
- FloatValue.h
- IdentifierExpr.h
- IfExpr.h
- InputParser.h
- IntValue.h
- KX_HashedPtr.h
- KX_Python.h
- ListValue.h
- Operator1Expr.h
- Operator2Expr.h
- PyObjectPlus.h
- StringValue.h
- Value.h
- VectorValue.h
- VoidValue.h
+ EXP_BoolValue.h
+ EXP_ConstExpr.h
+ EXP_EmptyValue.h
+ EXP_ErrorValue.h
+ EXP_Expression.h
+ EXP_FloatValue.h
+ EXP_HashedPtr.h
+ EXP_IdentifierExpr.h
+ EXP_IfExpr.h
+ EXP_InputParser.h
+ EXP_IntValue.h
+ EXP_ListValue.h
+ EXP_Operator1Expr.h
+ EXP_Operator2Expr.h
+ EXP_PyObjectPlus.h
+ EXP_Python.h
+ EXP_StringValue.h
+ EXP_Value.h
+ EXP_VectorValue.h
+ EXP_VoidValue.h
)
+if(WITH_PYTHON)
+ list(APPEND SRC
+ intern/PythonCallBack.cpp
+
+ EXP_PythonCallBack.h
+ )
+endif()
+
blender_add_lib(ge_logic_expressions "${SRC}" "${INC}" "${INC_SYS}")