Peerplays Fast Compile Library
Find a file
vogel76 7fc529e7f2 [BW]: [NIP] CMakeLists.txt cleanup:
- include configuration and compile options are right now target specific and can be automatically propagated for client modules by cmake (previously include paths, compilation settings were copied into every CMakeLists.txt using this module.
- Boost/OpenSSL detection moved to the fc module since really this one needs them. Since these libraries are added to fc target dependencies client modules don't need to know about Boost/OpenSSL usage since these dependencies will be automatically added by cmake.
2014-02-12 12:45:36 +01:00
CMakeModules Updating FC with changes from phoenix-int 2013-06-05 15:19:00 -04:00
GitVersionGen moved from keyhotee to this fc dir 2014-01-17 22:27:30 +05:30
include/fc fixes to build under clang++ 2014-02-06 03:22:09 -05:00
src fixes to build under clang++ 2014-02-06 03:22:09 -05:00
tests fix unit test 2013-09-05 22:12:00 -04:00
vendor [GS] Implemented lzma compression. 2014-01-24 14:51:35 +01:00
.gitignore ignoring generated files 2013-12-09 22:26:13 -05:00
CMakeLists.txt [BW]: [NIP] CMakeLists.txt cleanup: 2014-02-12 12:45:36 +01:00
fc.natvis Visual Studio native visualizers for fc 2014-01-09 10:58:35 -05:00
GitSHA3.cpp.in "Added code to get the revision of fc repo" 2014-01-12 20:04:29 +05:30
GitSHA3.h "Added code to get the revision of fc repo" 2014-01-12 20:04:29 +05:30
README.md Create README.md 2013-07-01 22:45:17 -04:00

fc

FC stands for fast-compiling c++ library and provides a set of utility libraries useful for the development of asynchronous libraries. Some of the highlights include:

  • Cooperative Multi-Tasking Library with support for Futures, mutexes, signals.
  • Wrapper on Boost ASIO for handling async opperations cooperatively with easy to code synchronous style.
  • Reflection for C++ allowing automatic serialization in Json & Binary of C++ Structs
  • Automatic generation of client / server stubs for reflected interfaces with support for JSON-RPC
  • Cryptographic Primitives for a variaty of hashes and encryption algorithms
  • Logging Infrastructure
  • Wraps many Boost APIs, such as boost::filesystem, boost::thread, and boost::exception to acceleate compiles
  • Support for unofficial Boost.Process library.