2022-12-02 23:32:18 -05:00
|
|
|
/*
|
|
|
|
* Created by Brett Terpstra 6920201 on 20/10/22.
|
|
|
|
* Copyright (c) 2022 Brett Terpstra. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CMAKE_CONFIG
|
|
|
|
|
|
|
|
// Are we building with debug (engine tools) or release (no engine tools)
|
|
|
|
/* #undef DEBUG_ENABLED */
|
|
|
|
#define DEBUG_ENABLED_BOOL false
|
|
|
|
// are we building with release or debug mode?
|
|
|
|
/* #undef COMPILER_DEBUG_ENABLED */
|
|
|
|
#define COMPILER_DEBUG_ENABLED_BOOL false
|
|
|
|
|
|
|
|
/* #undef COMPILE_GUI */
|
2022-12-12 15:47:56 -05:00
|
|
|
/* #undef COMPILE_OPENCL */
|
2022-12-02 23:32:18 -05:00
|
|
|
#define USE_GLFW
|
|
|
|
/* #undef USE_OPENMP */
|
|
|
|
#define USE_MPI
|
|
|
|
|
|
|
|
|
|
|
|
#define CMAKE_CONFIG
|
|
|
|
#endif
|