From 44b2445a46a058e43e59c0a29ef8744752b09a9e Mon Sep 17 00:00:00 2001 From: Fries Date: Sat, 20 Jul 2024 17:51:06 -0700 Subject: [PATCH] unforce static libraryism --- .gitignore | 1 + src/y262/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f65c48 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +./build diff --git a/src/y262/CMakeLists.txt b/src/y262/CMakeLists.txt index 4d2b259..b8e29d9 100644 --- a/src/y262/CMakeLists.txt +++ b/src/y262/CMakeLists.txt @@ -87,7 +87,7 @@ elseif(Y262_TARGET_ARCH MATCHES "arm64") ) endif() -add_library(liby262 STATIC +add_library(liby262 ${liby262_sources_basic} ${liby262_sources_assembly} )