Open
Description
Will a shared library also be supported?
If you remove the STATIC
argument from add_library()
in CMakeLists.txt
then the user can decide to build either a static or shared library bu supplying cmake
parameter -DBUILD_SHARED_LIBS:BOOL=OFF
or -DBUILD_SHARED_LIBS:BOOL=ON
respectively.
Note that to support building a shared library (DLL) on Windows you will need to add the necessary __declspec(dllexport)
and __declspec(dllimport)
stuff for exported classes.
Metadata
Metadata
Assignees
Labels
No labels