0

我想做類似於#ifdef __linux__的操作,但是使用bada SDK。是否有默認定義的常量? 另外,我可以檢測何時編譯模擬器?在Bada操作系統上檢測編譯

+0

現在我想我要解決與「-D TARGET_OS_BADA」 – Jyaif 2010-07-09 15:56:36

回答

0

用途:

#ifdef _DEBUG 
    // Your code 
#endif 
1

您可以通過檢查MinGW的編譯器的關鍵字,這裏是一個有趣的link,將指向您在正確的位置......所以理論上你可以有它這樣

 
#ifdef __MINGW32__ 
/* we're in the simulator target */ 
#else 
/* we're in the native target */ 
#endif 
1

我使用類似:

#ifdef SHP 
# define CONFIG_SUPPORT_API_Osp 1 // bada 
#endif 

我希望也有一個定義告訴sdk版本或目標api太..