開發平台(Platform): (Ex: Win10, Linux, ...)
DOS
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
C
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
是否能在Run time時由條件式去決定要include header file?
Compilier time 我沒問題.
原由是我現在開發一個tool要跨Project.
裡面吃了別的部門生成的header file.
只是裡面有的許多相同的define name但給不同的值.
Ex:
Project1.h
#define inputWindow1 0x100
Project2.h
#define inputWindow1 0x200
有沒有類似這樣這樣的做法(語法是錯的, 不要噹我XDD)
if(input == 1)
#include <lib\project1.h>
else
#include <lib\project2.h>
補充說明(Supplement):
我google了C dynamic include header file.
但找了很久都沒有解答.
大多回答#ifdef, 但這是compiler time決定.
看有沒有神人遇過類似的需求.
感謝.