Hi Andres, Am 19.08.2014 17:05, schrieb Andres Felipe Acosta Gil: > I would like to know the lib and include paths needed to work with a > SUMO > component, say netconvert, as an external dependency. I compiled the > SUMO > sources with VS 2010 and in the msvc10 folder there are some library > directories starting with y_ z_ zz_ and zzz_, ¿How can I relate them > with > the corresponding includes? Finally, how can I deal with includes such > as > windows_config.h, where is the corresponding .lib??
What we usually do when adding new executables (for windows) is to establish a new visual studio project (or even a new solution) and add all needed libs as dependencies (so there are projects which are in several solutions). To find out about the dependencies of existing projects (just as netconvert) and add new ones, use the Properties-dialog (Common Properties->Framework and References). There you find all dependent libs. The relation to the src is usually per directory, so there is more or less a lib for every source dir. Concerning the header files, they do not need a lib because they are compiled directly via the include but usually they live also in the project governing the directory (except for some special cases like windows_config.h which is part of the sumo project). Best regards, Michael ------------------------------------------------------------------------------ Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ _______________________________________________ sumo-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sumo-user
