I got bunch of .cpp files, .h files in Visual studio env, when I compile, it creates .exe file with GUI saying latitude, longitude and etc., GUI part I can eliminate, but the rest of core function I need to convert to library in windows, how to create library?. somebody will use this library, then they will call API and make their own GUI to show GPS values, appreciated.
GPS application implemented as executable, I need to convert that to library, how?
Collapse
X
-
Tags: None
-
open property by pressing alt+F7 then click general tree menu
from there configuration type to required type -
currently all code make one .exe file (GUI code + GPS parser), if I takeout all GUI code, rest code I need to build like .dll or .so, which is a library, then some others want to use API to build their own GUI, can I generate dll?.
these are all .cpp files, I need to add .c files for user access right?Comment
Comment