81 lines
4.1 KiB
CMake
81 lines
4.1 KiB
CMake
set(libprotobuf_lite_files
|
|
${protobuf_source_dir}/src/google/protobuf/any_lite.cc
|
|
${protobuf_source_dir}/src/google/protobuf/arena.cc
|
|
${protobuf_source_dir}/src/google/protobuf/extension_set.cc
|
|
${protobuf_source_dir}/src/google/protobuf/generated_enum_util.cc
|
|
${protobuf_source_dir}/src/google/protobuf/generated_message_table_driven_lite.cc
|
|
${protobuf_source_dir}/src/google/protobuf/generated_message_util.cc
|
|
${protobuf_source_dir}/src/google/protobuf/implicit_weak_message.cc
|
|
${protobuf_source_dir}/src/google/protobuf/io/coded_stream.cc
|
|
${protobuf_source_dir}/src/google/protobuf/io/io_win32.cc
|
|
${protobuf_source_dir}/src/google/protobuf/io/strtod.cc
|
|
${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream.cc
|
|
${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream_impl.cc
|
|
${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
|
|
${protobuf_source_dir}/src/google/protobuf/message_lite.cc
|
|
${protobuf_source_dir}/src/google/protobuf/parse_context.cc
|
|
${protobuf_source_dir}/src/google/protobuf/repeated_field.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/bytestream.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/common.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/int128.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/status.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/statusor.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/stringpiece.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/stringprintf.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/structurally_valid.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/strutil.cc
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/time.cc
|
|
${protobuf_source_dir}/src/google/protobuf/wire_format_lite.cc
|
|
)
|
|
|
|
set(libprotobuf_lite_includes
|
|
${protobuf_source_dir}/src/google/protobuf/arena.h
|
|
${protobuf_source_dir}/src/google/protobuf/arenastring.h
|
|
${protobuf_source_dir}/src/google/protobuf/extension_set.h
|
|
${protobuf_source_dir}/src/google/protobuf/generated_message_util.h
|
|
${protobuf_source_dir}/src/google/protobuf/implicit_weak_message.h
|
|
${protobuf_source_dir}/src/google/protobuf/parse_context.h
|
|
${protobuf_source_dir}/src/google/protobuf/io/coded_stream.h
|
|
${protobuf_source_dir}/src/google/protobuf/io/strtod.h
|
|
${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream.h
|
|
${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream_impl.h
|
|
${protobuf_source_dir}/src/google/protobuf/io/zero_copy_stream_impl_lite.h
|
|
${protobuf_source_dir}/src/google/protobuf/message_lite.h
|
|
${protobuf_source_dir}/src/google/protobuf/repeated_field.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/bytestream.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/common.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/int128.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/once.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/status.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/statusor.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/stringpiece.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/stringprintf.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/strutil.h
|
|
${protobuf_source_dir}/src/google/protobuf/stubs/time.h
|
|
${protobuf_source_dir}/src/google/protobuf/wire_format_lite.h
|
|
)
|
|
|
|
if (MSVC)
|
|
set(libprotobuf_lite_rc_files
|
|
${CMAKE_CURRENT_BINARY_DIR}/version.rc
|
|
)
|
|
endif()
|
|
|
|
add_library(libprotobuf-lite ${protobuf_SHARED_OR_STATIC}
|
|
${libprotobuf_lite_files} ${libprotobuf_lite_includes} ${libprotobuf_lite_rc_files})
|
|
target_link_libraries(libprotobuf-lite ${CMAKE_THREAD_LIBS_INIT})
|
|
if(protobuf_LINK_LIBATOMIC)
|
|
target_link_libraries(libprotobuf-lite atomic)
|
|
endif()
|
|
target_include_directories(libprotobuf-lite PUBLIC ${protobuf_source_dir}/src)
|
|
if(MSVC AND protobuf_BUILD_SHARED_LIBS)
|
|
target_compile_definitions(libprotobuf-lite
|
|
PUBLIC PROTOBUF_USE_DLLS
|
|
PRIVATE LIBPROTOBUF_EXPORTS)
|
|
endif()
|
|
set_target_properties(libprotobuf-lite PROPERTIES
|
|
VERSION ${protobuf_VERSION}
|
|
OUTPUT_NAME ${LIB_PREFIX}protobuf-lite
|
|
DEBUG_POSTFIX "${protobuf_DEBUG_POSTFIX}")
|
|
add_library(protobuf::libprotobuf-lite ALIAS libprotobuf-lite)
|