]> code.bitgloo.com Git - clyne/entityx.git/commit
Add Python based scripting system (still experimental).
authorAlec Thomas <alec@swapoff.org>
Sat, 17 Aug 2013 03:53:44 +0000 (23:53 -0400)
committerAlec Thomas <alec@swapoff.org>
Sat, 17 Aug 2013 03:53:44 +0000 (23:53 -0400)
commit451b2f0e1ebeea6e4ffb7b24e208d2b56b6a1e9b
treee81afff8067e1ab1a2a9466965e1bda374bc08d3
parent70d2aef8ea1edd50df3050d503eda029fbc4d706
Add Python based scripting system (still experimental).

The build system has also been revamped considerably, with the ability
to select between std::shared_ptr and boost::shared_ptr, as well as
other improvements.
19 files changed:
.travis.yml
CMakeLists.txt
CheckCXX11SharedPtr.cmake
entityx/Entity.h
entityx/config.h.in
entityx/python/PythonSystem.cc [new file with mode: 0644]
entityx/python/PythonSystem.h [new file with mode: 0644]
entityx/python/PythonSystem_test.cc [new file with mode: 0644]
entityx/python/README.md [new file with mode: 0644]
entityx/python/entityx/__init__.py [new file with mode: 0644]
entityx/python/entityx/tests/__init__.py [new file with mode: 0644]
entityx/python/entityx/tests/assign_test.py [new file with mode: 0644]
entityx/python/entityx/tests/constructor_test.py [new file with mode: 0644]
entityx/python/entityx/tests/create_entities_from_python_test.py [new file with mode: 0644]
entityx/python/entityx/tests/deep_subclass_test.py [new file with mode: 0644]
entityx/python/entityx/tests/event_test.py [new file with mode: 0644]
entityx/python/entityx/tests/update_test.py [new file with mode: 0644]
entityx/python/setup.py [new file with mode: 0644]
scripts/travis.sh