Hi, thanks for the library!
in
|
# Target |
|
if ( E57_BUILD_SHARED ) |
|
message( STATUS "[E57] Building shared library" ) |
|
add_library( E57Format SHARED ) |
|
else() |
|
message( STATUS "[E57] Building static library" ) |
|
add_library( E57Format STATIC ) |
|
endif() |
it makes building static and shared libs mutually exclusive.
Would it be possible to allow building both (I believe cmake supports that by default)?
This would make life for distribution packagers easier.
Thanks!
Hi, thanks for the library!
in
libE57Format/CMakeLists.txt
Lines 82 to 89 in f657d47
Would it be possible to allow building both (I believe cmake supports that by default)?
This would make life for distribution packagers easier.
Thanks!