build: static libraries

This commit is contained in:
vae 2021-05-09 01:22:14 +03:00
parent e1ad016bb5
commit 58f57f746c
Signed by untrusted user: vae
GPG key ID: A9A33351400E00E5
5 changed files with 5 additions and 5 deletions

View file

@ -35,7 +35,7 @@ set(squawkUI_SRC
)
# Tell CMake to create the helloworld executable
add_library(squawkUI ${squawkUI_SRC})
add_library(squawkUI STATIC ${squawkUI_SRC})
# Use the Widgets module from Qt 5.
target_link_libraries(squawkUI squawkWidgets)

View file

@ -16,7 +16,7 @@ set(vCardUI_SRC
)
# Tell CMake to create the helloworld executable
add_library(vCardUI ${vCardUI_SRC})
add_library(vCardUI STATIC ${vCardUI_SRC})
# Use the Widgets module from Qt 5.
target_link_libraries(vCardUI Qt5::Widgets)