summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Update .gitignore filesPiotr Dziwinski2014-09-211-0/+1
|
* Add a PLATFORM_GNU global variable matching all GNU systems such as Debian's ↵Didier Raboud2013-11-271-2/+0
| | | | Linux, kFreeBSD and Hurd
* Added option to force to use bundled gmock/gtestPiotr Dziwinski2013-10-241-3/+0
| | | | | | * resolves problem when version of gmock/gtest found installed in system disagrees with the bundled one * removed -DGTEST_HAVE_PTHREAD=0, seems that pthread is needed after all
* Some further changes in CMakeListsPiotr Dziwinski2013-06-241-2/+2
| | | | | | * removed DEV_BUILD autodetection (could be confusing) * ignore desktop subdirectory on Windows * some refactoring
* Fixed auto-detecting locale on WindowsPiotr Dziwinski2013-06-244-0/+3003
| | | | | | * localename library is now used to determine the actual locale used * added patched version of FindGettext.cmake to fix installation path of translation files
* gitignore updatePiotr Dziwinski2013-06-221-0/+1
| | | | | * git should now ignore all generated files when building without separate build directory
* * Added clipboard support (issue #60)erihel2013-04-1110-0/+1957
| | | | * Fixed keyboard shortcuts while code editing in game
* CMakeLists enhancementsPiotr Dziwinski2013-01-081-0/+2
| | | | | | | - compiler detection (clang and gcc version check) - compile flags only for src/ subdir - system and local include paths - fix for clang compilation
* Split gtest and gmock, fixed using system packagesPiotr Dziwinski2012-12-1631-430/+435
| | | | | | - split the bundled gtest and gmock libraries - allowed the use of system gmock - refactoring in CMakeLists
* Added saving user scripts on game save. Fixed bug in writing script to file.Zaba9992012-10-1126-0/+16397
|
* Profile rewritten to boost. Read/write to ini should work.Zaba9992012-09-2720-6932/+0
| | | | Load/Save should work.
* * Removed some warningserihel2012-09-221-9/+9
|
* warnings fight in progress.Zaba9992012-09-181-23/+23
|
* CModelFile fixes; test frameworkPiotr Dziwinski2012-09-0839-0/+30655
| | | | | | - fixes in CModelFile IO - added Google Test framework for automatic testing - rewrote modelfile_test in the new framework
* * changed 0, NULL to nullptrerihel2012-08-0920-0/+6932
* changed profile.cpp to use SimpleIni to load config files * added new CProfile singleton class for loading config * added SimpleIni to lib/ dir * added config loading tests