mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@120 7061adef-622a-194b-ae81-725974e89856
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/*
|
|
header file to include NITRO precompile header file
|
|
*/
|
|
|
|
#if !__option (precompile)
|
|
|
|
#ifdef __cplusplus
|
|
/* include precompiled header for C++ source */
|
|
#ifdef SDK_DEBUG
|
|
#include "Nitro_TS_Debug.mch++" /* If a compile error occurs in this line, please precompile "Nitro_TS.pch++" */
|
|
#elif SDK_RELEASE
|
|
#include "Nitro_TS_Release.mch++" /* If a compile error occurs in this line, please precompile "Nitro_TS.pch++" */
|
|
#elif SDK_FINALROM
|
|
#include "Nitro_TS_ROM.mch++" /* If a compile error occurs in this line, please precompile "Nitro_TS.pch++" */
|
|
#else
|
|
#error("no SDK_ define")
|
|
#endif
|
|
#else
|
|
/* include precompiled header for C source */
|
|
#ifdef SDK_DEBUG
|
|
#include "Nitro_TS_Debug.mch" /* If a compile error occurs in this line, please precompile "Nitro_TS.pch" */
|
|
#elif SDK_RELEASE
|
|
#include "Nitro_TS_Release.mch" /* If a compile error occurs in this line, please precompile "Nitro_TS.pch" */
|
|
#elif SDK_FINALROM
|
|
#include "Nitro_TS_ROM.mch" /* If a compile error occurs in this line, please precompile "Nitro_TS.pch" */
|
|
#else
|
|
#error("no SDK_ define")
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|