Cthulhu  0.2.10
Cthulhu compiler collection
ctu_config.h
Go to the documentation of this file.
1 #pragma once
2 
3 #define CT_BUILDTYPE_SHARED 1
4 #define CT_BUILDTYPE_STATIC 2
5 
6 #include <ctu_core_config.h>
7 
8 #define CT_BUILD_SHARED (CTU_BUILDTYPE == CT_BUILDTYPE_SHARED)
9 #define CT_BUILD_STATIC (CTU_BUILDTYPE == CT_BUILDTYPE_STATIC)