c++ - How to manage 100 different main files? -


short version of question:

is there way set visual studio solution build 100 different main files contained in single code base, , in single visual studio project?

long version of question:

i work legacy corporate signal processing library.

the functions in clean, written, highly optimized, , in ansi c. (yes, know of attributes contradictory) have vs project build library, , publish other projects/groups in company using our corporate code publishing system.

each "big" library entry point has it's own source file. each of these "big" entry points has thin main wrapper function defined in file,

#ifdef foomain /* main function foo */ main()  {   } #endif 

i have learned these "little" apps used many people around company. so, include these apps in our publishing process. (at present published via manual door means.) using vs solutions, , curious if can there?


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -