diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-25 13:16:59 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-25 13:16:59 +0200 |
commit | e4c9235c9145a0b2da4d2cb6ff4669cad8de14b4 (patch) | |
tree | 34e55309bb86349e19cef05f710a18a4c6fce964 /Lagom | |
parent | 6957976796819173e96019a1d792b26a1942bae8 (diff) | |
download | serenity-e4c9235c9145a0b2da4d2cb6ff4669cad8de14b4.zip |
Lagom: Let's build liblagom as a static library.
Diffstat (limited to 'Lagom')
-rw-r--r-- | Lagom/.gitignore | 1 | ||||
-rw-r--r-- | Lagom/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Lagom/.gitignore b/Lagom/.gitignore index ec121a9996..de11e3de06 100644 --- a/Lagom/.gitignore +++ b/Lagom/.gitignore @@ -1,3 +1,4 @@ +liblagom.a CMakeCache.txt CMakeFiles Makefile diff --git a/Lagom/CMakeLists.txt b/Lagom/CMakeLists.txt index d1c7c9b5aa..62d0686a2d 100644 --- a/Lagom/CMakeLists.txt +++ b/Lagom/CMakeLists.txt @@ -22,5 +22,5 @@ set(SOURCES ${SOURCES} include_directories (../) include_directories (../Libraries/) -add_library(lagom SHARED ${SOURCES}) +add_library(lagom ${SOURCES}) |