2022-05-19 20:52:19 +08:00
|
|
|
#define __OOC_CPP__
|
2022-06-14 03:20:17 +00:00
|
|
|
#define __OOC_DEBUG__
|
|
|
|
|
|
|
|
extern "C" {
|
2022-10-28 18:39:50 +08:00
|
|
|
#include <stdio.h>
|
2022-12-28 06:41:36 +08:00
|
|
|
#include "../package/pikascript/pikascript-lib/PikaStdDevice/pika_hal.h"
|
2022-06-14 03:20:17 +00:00
|
|
|
#include "BaseObj.h"
|
|
|
|
#include "PikaCompiler.h"
|
|
|
|
#include "PikaMain.h"
|
2022-10-28 18:39:50 +08:00
|
|
|
#include "PikaMath_Operator.h"
|
2022-06-14 03:20:17 +00:00
|
|
|
#include "PikaParser.h"
|
|
|
|
#include "PikaStdLib_MemChecker.h"
|
|
|
|
#include "PikaStdLib_SysObj.h"
|
|
|
|
#include "PikaVM.h"
|
|
|
|
#include "TinyObj.h"
|
|
|
|
#include "dataArgs.h"
|
|
|
|
#include "dataMemory.h"
|
|
|
|
#include "dataStrs.h"
|
|
|
|
#include "pikaScript.h"
|
|
|
|
#include "pika_config_gtest.h"
|
|
|
|
extern PikaMemInfo pikaMemInfo;
|
|
|
|
/* the log_buff of printf */
|
|
|
|
extern char log_buff[LOG_BUFF_MAX][LOG_SIZE];
|
|
|
|
}
|
2022-10-28 18:39:50 +08:00
|
|
|
|
|
|
|
#if USE_GOOGLE_TEST
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#define TEST_START
|
|
|
|
#define TEST_END
|
|
|
|
#else
|
|
|
|
#include "test_purec.h"
|
|
|
|
#endif
|