Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / ExportImport / Import / imp_testExe1.c
blob6424d33994b6a83abb8df59daef7bfce1572358c
1 extern int generated_by_testExe1();
2 extern int generated_by_testExe3();
3 extern int testLib2();
4 extern int testLib3();
5 extern int testLib4();
6 extern int testLib4lib();
8 /* Switch a symbol between debug and optimized builds to make sure the
9 proper library is found from the testLib4 link interface. */
10 #ifdef EXE_DBG
11 # define testLib4libcfg testLib4libdbg
12 #else
13 # define testLib4libcfg testLib4libopt
14 #endif
15 extern testLib4libcfg(void);
17 int main()
19 return (testLib2() + generated_by_testExe1() + testLib3() + testLib4()
20 + generated_by_testExe3() + testLib4lib() + testLib4libcfg());