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:
authorJorge Bernal <jbernalmartinez@gmail.com>2015-07-12 17:55:33 +0300
committerJorge Bernal <jbernalmartinez@gmail.com>2015-07-12 17:58:12 +0300
commit6ffc988ae3aa57822be89e9580146908c938e0a0 (patch)
tree6c9299a519b8d4b1da0780cf0cd2bc4bba108fb8 /source/gameengine/Expressions/CMakeLists.txt
parent5b0f674e0948d079332718e165b4a42369517ed6 (diff)
BGE Clean-up: New EXP prefix for the BGE Expression module
The expression module now uses an EXP prefix and it follows a distribution similar to blender. Additionally the hash function in EXP_HashedPtr.h was simplified and the files EXP_C-Api.h &.EXP_C-Api.cpp were deleted because were unused. Reviewers: campbellbarton, moguri, sybren, hg1 Projects: #game_engine Differential Revision: https://developer.blender.org/D1221
Diffstat (limited to 'source/gameengine/Expressions/CMakeLists.txt')
-rw-r--r--source/gameengine/Expressions/CMakeLists.txt82
1 files changed, 40 insertions, 42 deletions
diff --git a/source/gameengine/Expressions/CMakeLists.txt b/source/gameengine/Expressions/CMakeLists.txt
index f827a9528b4..6ab4d3fdacc 100644
--- a/source/gameengine/Expressions/CMakeLists.txt
+++ b/source/gameengine/Expressions/CMakeLists.txt
@@ -36,54 +36,52 @@ 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
- KX_PythonCallBack.cpp
+ intern/PythonCallBack.cpp
- KX_PythonCallBack.h
+ EXP_PythonCallBack.h
)
endif()