diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index 11575c82..8ca12157 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -9,9 +9,9 @@ set_target_properties(uv PROPERTIES INTERFACE_INCLUDE_DIRECTORIES ${platform_spec_path}/include/libuv ) -add_library(mpg123 SHARED IMPORTED GLOBAL) +add_library(mpg123 STATIC IMPORTED GLOBAL) set_target_properties(mpg123 PROPERTIES - IMPORTED_LOCATION ${linux_lib_dir}/mpg123/libmpg123.so + IMPORTED_LOCATION ${linux_lib_dir}/mpg123/libmpg123.a INTERFACE_INCLUDE_DIRECTORIES ${platform_spec_path}/include/mpg123 ) @@ -32,15 +32,15 @@ set_target_properties(vorbis PROPERTIES INTERFACE_INCLUDE_DIRECTORIES ${platform_spec_path}/include/vorbis ) -add_library(libz SHARED IMPORTED GLOBAL) +add_library(libz STATIC IMPORTED GLOBAL) set_target_properties(libz PROPERTIES - IMPORTED_LOCATION ${linux_lib_dir}/libz/libz.so.1.2.11 + IMPORTED_LOCATION ${linux_lib_dir}/libz/libz.a INTERFACE_INCLUDE_DIRECTORIES ${platform_spec_path}/include/libz ) -add_library(sqlite3 SHARED IMPORTED GLOBAL) +add_library(sqlite3 STATIC IMPORTED GLOBAL) set_target_properties(sqlite3 PROPERTIES - IMPORTED_LOCATION ${linux_lib_dir}/sqlite/libsqlite3.so.0.8.6 + IMPORTED_LOCATION ${linux_lib_dir}/sqlite/libsqlite3.a INTERFACE_INCLUDE_DIRECTORIES ${platform_spec_path}/include/sqlite ) @@ -49,9 +49,9 @@ set_target_properties(v8 PROPERTIES IMPORTED_LOCATION ${linux_lib_dir}/v8/libv8_monolith.a ) -add_library(openal SHARED IMPORTED GLOBAL) +add_library(openal STATIC IMPORTED GLOBAL) set_target_properties(openal PROPERTIES - IMPORTED_LOCATION ${linux_lib_dir}/openal-soft/libopenal.so.1.21.1 + IMPORTED_LOCATION ${linux_lib_dir}/openal-soft/libopenal.a INTERFACE_INCLUDE_DIRECTORIES ${platform_spec_path}/include/openal-soft ) diff --git a/linux/lib/mpg123/libmpg123.a b/linux/lib/mpg123/libmpg123.a new file mode 100644 index 00000000..45c93edd Binary files /dev/null and b/linux/lib/mpg123/libmpg123.a differ diff --git a/linux/lib/openal-soft/libopenal.a b/linux/lib/openal-soft/libopenal.a new file mode 100644 index 00000000..69ee4521 Binary files /dev/null and b/linux/lib/openal-soft/libopenal.a differ diff --git a/linux/lib/v8/libv8_monolith_custom_false.a b/linux/lib/v8/libv8_monolith_custom_false.a new file mode 100644 index 00000000..ae2ef7ba Binary files /dev/null and b/linux/lib/v8/libv8_monolith_custom_false.a differ diff --git a/linux/lib/v8/libv8_monolith_custom_true.a b/linux/lib/v8/libv8_monolith_custom_true.a new file mode 100644 index 00000000..87f942f3 Binary files /dev/null and b/linux/lib/v8/libv8_monolith_custom_true.a differ