Compare commits

..
Author SHA1 Message Date
yangchaoandGitHub 973e244526 fix : linux use static lib (#223) 2022-02-25 15:32:45 +08:00
yangchaoandGitHub f28eba4d2f Server mode not link sdl2 (#221) 2022-02-24 14:49:47 +08:00
5 changed files with 12 additions and 9 deletions
+12 -9
View File
@@ -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
)
@@ -177,8 +177,11 @@ list(APPEND CC_EXTERNAL_LIBS
png
websockets
webp
sdl2
curl
${optional_libs_name}
${glslang_libs_name}
)
if(NOT USE_SERVER_MODE)
list(APPEND CC_EXTERNAL_LIBS sdl2)
endif()
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.