Changeset View
Changeset View
Standalone View
Standalone View
extern/quadriflow/src/config.hpp
| #ifndef CONFIG_H_ | #ifndef CONFIG_H_ | ||||
| #define CONFIG_H_ | #define CONFIG_H_ | ||||
| /* TODO:I do not like this one bit, but due to a bug in boost 1.68 */ | |||||
| /* this is needed, alternate option is to update to a newer */ | |||||
| /* boost which tends to be difficult on some platforms */ | |||||
| #if defined(__clang__) && defined(WIN32) | |||||
| #include <boost/type_traits/is_assignable.hpp> | |||||
| using namespace boost; | |||||
| #endif | |||||
| // Move settings to cmake to make CMake happy :) | // Move settings to cmake to make CMake happy :) | ||||
| // #define WITH_SCALE | // #define WITH_SCALE | ||||
| // #define WITH_CUDA | // #define WITH_CUDA | ||||
| const int GRAIN_SIZE = 1024; | const int GRAIN_SIZE = 1024; | ||||
| #ifdef LOG_OUTPUT | #ifdef LOG_OUTPUT | ||||
| Show All 23 Lines | |||||