Merge pull request #221 from berolinux/static-helper-libs
Make sure helper libraries get built as static libs
This commit is contained in:
commit
3c70c4a80d
10 changed files with 12 additions and 9 deletions
|
|
@ -20,5 +20,5 @@ if ("${cmake_build_type_lower}" STREQUAL "trace")
|
|||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OPENGL_DEBUG}")
|
||||
endif()
|
||||
|
||||
add_library(GLESv1_dec ${SOURCES} ${GENERATED_SOURCES})
|
||||
add_library(GLESv1_dec STATIC ${SOURCES} ${GENERATED_SOURCES})
|
||||
target_link_libraries(GLESv1_dec OpenglCodecCommon)
|
||||
|
|
|
|||
|
|
@ -20,5 +20,5 @@ if ("${cmake_build_type_lower}" STREQUAL "trace")
|
|||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OPENGL_DEBUG}")
|
||||
endif()
|
||||
|
||||
add_library(GLESv2_dec ${SOURCES} ${GENERATED_SOURCES})
|
||||
add_library(GLESv2_dec STATIC ${SOURCES} ${GENERATED_SOURCES})
|
||||
target_link_libraries(GLESv2_dec OpenglCodecCommon)
|
||||
|
|
|
|||
|
|
@ -12,6 +12,6 @@ set(SOURCES
|
|||
objectNameManager.cpp
|
||||
FramebufferData.cpp)
|
||||
|
||||
add_library(GLcommon ${SOURCES})
|
||||
add_library(GLcommon STATIC ${SOURCES})
|
||||
target_link_libraries(GLcommon
|
||||
emugl_common)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ set(SOURCES
|
|||
GLESv2Dispatch.cpp
|
||||
GLESv1Dispatch.cpp)
|
||||
|
||||
add_library(OpenGLESDispatch ${SOURCES} ${GENERATED_SOURCES})
|
||||
add_library(OpenGLESDispatch STATIC ${SOURCES} ${GENERATED_SOURCES})
|
||||
target_link_libraries(OpenGLESDispatch
|
||||
emugl_common
|
||||
GLESv2_dec
|
||||
|
|
|
|||
|
|
@ -16,5 +16,5 @@ if ("${cmake_build_type_lower}" STREQUAL "trace")
|
|||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OPENGL_DEBUG}")
|
||||
endif()
|
||||
|
||||
add_library(renderControl_dec ${GENERATED_SOURCES})
|
||||
add_library(renderControl_dec STATIC ${GENERATED_SOURCES})
|
||||
target_link_libraries(renderControl_dec OpenglCodecCommon)
|
||||
|
|
|
|||
|
|
@ -12,4 +12,4 @@ set(SOURCES
|
|||
Makefile
|
||||
ProtocolUtils.h)
|
||||
|
||||
add_library(OpenglCodecCommon ${SOURCES})
|
||||
add_library(OpenglCodecCommon STATIC ${SOURCES})
|
||||
|
|
|
|||
|
|
@ -28,6 +28,6 @@ set(COMMON_SOURCES
|
|||
thread_unittest.cpp
|
||||
unique_integer_map.h)
|
||||
|
||||
add_library(emugl_common ${COMMON_SOURCES})
|
||||
add_library(emugl_common STATIC ${COMMON_SOURCES})
|
||||
target_link_libraries(emugl_common
|
||||
dl pthread)
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@
|
|||
# Authored by: Thomas Voss <thomas.voss@canonical.com>
|
||||
add_library(
|
||||
process-cpp
|
||||
|
||||
STATIC
|
||||
|
||||
core/posix/backtrace.h
|
||||
core/posix/backtrace.cpp
|
||||
|
|
|
|||
2
external/xdg/CMakeLists.txt
vendored
2
external/xdg/CMakeLists.txt
vendored
|
|
@ -11,7 +11,7 @@ include_directories(
|
|||
${Boost_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
add_library(xdg xdg.cpp)
|
||||
add_library(xdg STATIC xdg.cpp)
|
||||
set_property(TARGET xdg PROPERTY CXX_STANDARD 11)
|
||||
target_link_libraries(xdg ${Boost_LIBRARIES})
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ protobuf_generate_cpp(
|
|||
|
||||
|
||||
add_library(anbox-protobuf
|
||||
STATIC
|
||||
${GENERATED_PROTOBUF_BRIDGE_SRCS}
|
||||
${GENERATED_PROTOBUF_BRIDGE_HDRS}
|
||||
${GENERATED_PROTOBUF_RPC_SRCS}
|
||||
|
|
@ -207,7 +208,7 @@ set(SOURCES
|
|||
anbox/optional.h
|
||||
anbox/defer_action.h)
|
||||
|
||||
add_library(anbox-core ${SOURCES})
|
||||
add_library(anbox-core STATIC ${SOURCES})
|
||||
target_link_libraries(anbox-core
|
||||
${Boost_LDFLAGS}
|
||||
${Boost_LIBRARIES}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue