23 lines
578 B
C
23 lines
578 B
C
/*
|
|
* 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)
|
|
#cmakedefine DEBUG_ENABLED
|
|
#cmakedefine DEBUG_ENABLED_BOOL @DEBUG_ENABLED@
|
|
// are we building with release or debug mode?
|
|
#cmakedefine COMPILER_DEBUG_ENABLED
|
|
#cmakedefine COMPILER_DEBUG_ENABLED_BOOL @DEBUG_ENABLED@
|
|
|
|
#cmakedefine COMPILE_GUI
|
|
#cmakedefine COMPILE_OPENCL
|
|
#cmakedefine USE_GLFW
|
|
#cmakedefine USE_OPENMP
|
|
#cmakedefine USE_MPI
|
|
|
|
|
|
#define CMAKE_CONFIG
|
|
#endif |