aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Expand)Author
2017-06-11Document how to build and run Fruit in Visual Studio.Marco Poletti
2017-05-20Disable MSVC's C4714 warning ("function marked as __forceinline not inlined").Marco Poletti
2017-05-20Ignore MSVC's warning C4141 when building Fruit (marking a function/method wi...Marco Poletti
2017-03-27Allow building Fruit with -DCMAKE_BUILD_TYPE={RelWithDebInfo,MinSizeRel}.poletti-marco
2017-03-23Fix main binary include directory.Robert Jakob
2017-03-19Add support for building Fruit as a dynamic library (dll) with MSVC.Marco Poletti
2017-03-19Introduce a FRUIT_USES_BOOST CMake flag to allow building Fruit without Boost.Marco Poletti
2017-03-18Mark constexpr methods as const, to silence a MSVC warning.Marco Poletti
2017-03-12Fix 2 build errors introduced by commit 905dc09.Marco Poletti
2017-03-12Support building Fruit with MSVC.Marco Poletti
2017-03-04Fix quoting of variables in ifs in CMake files.Marco Poletti
2017-03-04Support compiling Fruit (and running tests) under Windows, using MinGW's GCC.Marco Poletti
2017-02-18Ignore Clang's constexpr-not-const warning, it's not a real issue and it was ...Marco Poletti
2016-11-12Don't set -pedantic with GCC 4.8, it's too restrictive (e.g. it doesn't allow...Marco Poletti
2016-11-12Disable the missing-braces warning in release mode too.Marco Poletti
2016-11-12Disable the missing-braces error in tests, it's too noisy (see also https://l...Marco Poletti
2016-11-12Compile with -pedantic in debug mode, and fix a few issues that were reported...Marco Poletti
2016-10-30Make project usable as submoduleMark Swaanenburg
2016-10-15Various improvements/fixes to the nose-based tests. Notably, adding nose2 to ...Marco Poletti
2016-05-29Set basic release flags when Fruit is compiled with CMAKE_BUILD_TYPE=Release ...Marco Poletti
2016-05-29Use a custom FruitAssert macro instead of plain assert() so that client code ...Marco Poletti
2016-05-29Do less compile-time work when FRUIT_NO_LOOP_CHECK was specified.Marco Poletti
2016-05-26Enable ASAN (but not UBSan) in all OS/compiler combinations ran in Travis CI ...Marco Poletti
2016-05-25Bump version to 2.0.4.Marco Poletti
2016-05-14Bump version to 2.0.3.Marco Poletti
2016-05-01Bump version to 2.0.2.Marco Poletti
2016-04-30Bump version to 2.0.1.Marco Poletti
2016-04-07Move files that are not strictly part of the Fruit library in extras/:Marco Poletti
2016-04-07Finish porting Linux CI tests to run under Docker.Marco Poletti
2016-03-27Bump version to 2.0.0.Marco Poletti
2016-02-21Mark AppleClang as an officially supported compiler.Marco Poletti
2016-02-21Add a note about AppleClang not being supported (in Mavericks at least) due t...Marco Poletti
2016-02-14Fix a few OS X-only issues, and blacklist Travis CI tests on OSX that use lib...Marco Poletti
2016-02-14Switch back to using -std=c++11 instead of CMAKE_CXX11_STANDARD_COMPILE_OPTIO...Marco Poletti
2016-02-14Take into account additional linker flags in the configure phase. This fixes ...Marco Poletti
2016-02-14Add a DebugPlain postsubmit testing mode (needed for OS X), and fix a CMake c...Marco Poletti
2016-02-14Fix syntax errors in CMakeLists.txt.Marco Poletti
2016-02-14Pass CMAKE_CXX_FLAGS to compilation tests, so that they have flags consistent...Marco Poletti
2016-01-30Some changes towards support of additional compilers/platforms (notably Intel...Marco Poletti
2016-01-30Add configure-time checks on compiler and STL features, and use the results o...Marco Poletti
2015-12-14Allow building fruit staticallyMaxwell Koo
2015-12-07Add a INSTRUMENT_WITH_SANITIZERS CMake flag, and make RUN_TESTS_UNDER_VALGRIN...Marco Poletti
2015-12-07Set -fsanitize=undefined,address consistently in Debug mode (before it was no...Marco Poletti
2015-12-06Add -fsanitize=undefined,address to debug builds (except GCC<4.9 where it's n...Marco Poletti
2015-12-06Fix GCC-only test failures by fixing the tests. Also change 1 test to be Clan...Marco Poletti
2015-12-01Set the test timeout in CTest instead of using `timeout' directly.Marco Poletti
2015-12-01Travis CI config for testing on OSX (3rd attempt).Marco Poletti
2015-05-31Fix compile error occurring only with GCC5 (which does a stricter check on pr...Marco Poletti
2015-05-31Add a FRUIT_DEEP_TEMPLATE_INSTANTIATION_STACKTRACES_FOR_ERRORS switch that al...Marco Poletti
2015-03-15Fix include installation dir, was something like $DESTDIR/include/fruit/inclu...Marco Poletti