Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-23 | Set build_interface directories for integrated builds | Sumedha Widyadharma | |
This makes it very easy to integrate entityx into a build. I.e: add_subdirectories(3rdparty/entityx) target_link_libraries(my_target entityx[_shared]) This makes #include entityx/entityx.h just work. | |||
2016-04-13 | Fix running tests | Daniel Guzmán | |
2016-04-13 | Dependencies for test projects added | Daniel Guzmán | |
2016-04-13 | Fix ident. | Daniel Guzman | |
2016-04-10 | Fixed shared library compilation. | Daniel Guzman | |
- Fixed that when ENTITYX_BUILD_SHARED=1 was compiling the static library and the shared_library. Now it only compiles one of them, shared or static, but not both. Using visual studio compiler, now, the shared library doesn't create a .lib file (because it doesn't export anything which is OK). This will be the next step. | |||
2015-12-25 | Fixes uint64_t ambigutity issue on compiling Benchmark_tests.cc on MSVC | Stephen Ma | |
Always build benchmark test when ENTITYX_BUILD_TESTING is set. Expand namespace entityx and std in Benchmarks_test.cc Fix whitespace to match original Benchmark_test.cc Fix CMakeFiles to correctly conditionally add Benchmark tests. | |||
2015-12-21 | Organize CMake generated projects into solution folders. | Stephen Ma | |
2015-12-20 | Generate seperate debug postfix dll for building in debug. | Stephen Ma | |
2015-12-20 | Remove use of quoted variables inside if and elseif blocks. | Stephen Ma | |
Single quote use of literal 'MSVC'. | |||
2015-12-19 | Generate seperate debug postfix dll for building in debug. | Stephen Ma | |
2015-04-25 | Don't require CMake 3.0. | Alec Thomas | |
2015-04-25 | Bump to 1.1.2. | Alec Thomas | |
2015-04-19 | update versions in CMakeLists.txt | Jason Pleau | |
2015-03-30 | Test that components aren't reused on deleted entities. | Alec Thomas | |
See #92. | |||
2014-12-24 | CMake fix for AppleClang. | Alec Thomas | |
2014-12-15 | Added CMake Find_Package script and debug suffix | Mario Liebisch | |
* This allows easy inclusion of EntityX in CMake projects using `Find_Package(EntityX)`. * Also debug versions now use the `-d` suffix, no longer overwriting release builds (e.g. `entityx-d.lib` rather than `entityx.lib`). | |||
2014-12-07 | add CMAKE_INSTALL_LIBDIR | Jason Pleau | |
Keeps the default to 'lib', while allowing to use it like so: -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu | |||
2014-12-02 | Add SONAME. Fixes #65. | Alec Thomas | |
2014-10-27 | Fix RPATH issue on OSX. | Alec Thomas | |
2014-10-27 | Configurable delta time type via -DENTITYX_DT_TYPE=<type>. | Alec Thomas | |
Fixes #60. | |||
2014-10-13 | Correct project name definition at CMakeLists.txt | kumar8600 | |
Match with before #7b6427d14aca84c9603f8767e6b9b097a8be9424 | |||
2014-10-12 | Merge pull request #53 from kumar8600/patch-2 | Alec Thomas | |
Make true default ENTITY_BUILD_SHARED | |||
2014-10-12 | Make true default ENTITY_BUILD_SHARED | kumar8600 | |
2014-10-12 | Define project name on CMakeLists.txt | kumar8600 | |
2014-07-10 | Add /MDd flag for MSVC debug target | Israël Hallé | |
2014-07-07 | Maybe fix the build? | Alec Thomas | |
2014-05-05 | 1.0.0alpha1 release. | Alec Thomas | |
2014-05-03 | Add -g to release builds. | Alec Thomas | |
2014-03-04 | Switch to Catch testing framework. | Alec Thomas | |
2014-03-02 | Use raw pointers for components, allocated from pools. | Alec Thomas | |
2014-03-02 | Removed Manager. Add EntityX class. Largely eradicate use of shared_ptr. | Alec Thomas | |
2014-02-13 | Fixed compile issues on Windows with Visual Studio 2013. | Jarrett Chisholm | |
- Made compiler flags dependent on the compiler being used. - Added check for clang to use the same compiler options as gnu g++ | |||
2014-01-19 | Add pkg-config source file | Zack Hovatter | |
2013-12-20 | Move Python support to https://github.com/alecthomas/entityx_python | Alec Thomas | |
2013-12-20 | Event delivery to/from Python and C++. | Alec Thomas | |
2013-11-04 | Moved stdlib=libc++ test into CMakeLists.txt. Made further modifications to ↵ | Antony Woods | |
README.md | |||
2013-10-31 | Line endings fix? | Antony Woods | |
2013-10-29 | Fixed a compiler error with std::chrono::duration | Antony Woods | |
2013-10-16 | Fixed invalid header in python files. Now using chrono instead of boost ↵ | Antony Woods | |
timer. Removed unnecessary ptr checks, as now shared ptr is mandatory. Updated Readme to reflect new changes. Updated travis file, just in case. | |||
2013-10-16 | First pass at replacing boost with c++11 features | Antony Woods | |
2013-10-04 | Add `Dependency<C, D1, D2...>` System for automatic component | Alec Thomas | |
dependencies. | |||
2013-09-04 | Performance improvements + emitting events from Python. | Alec Thomas | |
2013-08-22 | Switch from boost::signal to embedded Simple::Signal. | Alec Thomas | |
2013-08-21 | Revert "Switch to boost::signals2." | Alec Thomas | |
Until I have the time to make the tests work. This reverts commit be03c3a3d4e8824c3b909648b46910b4cdbc72e1. | |||
2013-08-21 | Switch to boost::signals2. | Alec Thomas | |
2013-08-19 | Fix build. | Alec Thomas | |
2013-08-19 | Add Doxygen file. | Alec Thomas | |
2013-08-16 | Add Python based scripting system (still experimental). | Alec Thomas | |
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. | |||
2013-04-03 | All Manager classes are now managed by smart pointers. | Alec Thomas | |
2013-04-02 | Remove Components*, moved to tags/ in a previous change. | Alec Thomas | |