1 2list(APPEND CRT_STARTUP_SOURCE 3 startup/_matherr.c 4 startup/crtexe.c 5 startup/wcrtexe.c 6 startup/crt_handler.c 7 startup/crtdll.c 8 startup/_newmode.c 9 startup/wildcard.c 10 startup/tlssup.c 11 startup/mingw_helpers.c 12 startup/natstart.c 13 startup/charmax.c 14 startup/atonexit.c 15 startup/dllmain.c 16 startup/pesect.c 17 startup/tlsmcrt.c 18 startup/tlsthrd.c 19 startup/tlsmthread.c 20 startup/cinitexe.c 21 startup/gs_support.c 22 startup/dll_argv.c 23 startup/dllargv.c 24 startup/wdllargv.c 25 startup/crt0_c.c 26 startup/crt0_w.c 27 startup/dllentry.c 28 startup/reactos.c 29) 30 31if(MSVC) 32 list(APPEND CRT_STARTUP_SOURCE 33 startup/mscmain.c 34 startup/threadSafeInit.c 35 ) 36else() 37 list(APPEND CRT_STARTUP_SOURCE 38 startup/gccmain.c 39 startup/pseudo-reloc.c 40 startup/pseudo-reloc-list.c 41 ) 42endif() 43