mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-24 22:36:10 +01:00
Use library() instead of static_library()
Build type will be set by default_library, which default to static. However, shared libraries can be built, by passing -Ddefault_library=shared
This commit is contained in:
parent
e9c36da60e
commit
c8b394e6cf
@ -351,7 +351,7 @@ if ((host_machine.system() == 'android') or
|
||||
catch2_dependencies += log_dep
|
||||
endif
|
||||
|
||||
catch2 = static_library(
|
||||
catch2 = library(
|
||||
'Catch2',
|
||||
sources,
|
||||
dependencies: catch2_dependencies,
|
||||
@ -371,7 +371,7 @@ pkg.generate(
|
||||
url: 'https://github.com/catchorg/Catch2',
|
||||
)
|
||||
|
||||
catch2_with_main = static_library(
|
||||
catch2_with_main = library(
|
||||
'Catch2Main',
|
||||
'internal/catch_main.cpp',
|
||||
link_with: catch2,
|
||||
|
Loading…
Reference in New Issue
Block a user