114 lines
3.8 KiB
CMake
114 lines
3.8 KiB
CMake
#
|
|
# Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
set(public_header_dir ${CMAKE_CURRENT_SOURCE_DIR}/../include)
|
|
|
|
set(dbs_public_header
|
|
include/alibabacloud/dbs/DbsClient.h
|
|
include/alibabacloud/dbs/DbsExport.h )
|
|
|
|
set(dbs_public_header_model
|
|
include/alibabacloud/dbs/model/DescribeBackupPlanListRequest.h
|
|
include/alibabacloud/dbs/model/DescribeBackupPlanListResult.h
|
|
include/alibabacloud/dbs/model/StopBackupPlanRequest.h
|
|
include/alibabacloud/dbs/model/StopBackupPlanResult.h
|
|
include/alibabacloud/dbs/model/CreateBackupPlanRequest.h
|
|
include/alibabacloud/dbs/model/CreateBackupPlanResult.h
|
|
include/alibabacloud/dbs/model/StartBackupPlanRequest.h
|
|
include/alibabacloud/dbs/model/StartBackupPlanResult.h
|
|
include/alibabacloud/dbs/model/DescribeBackupGatewayListRequest.h
|
|
include/alibabacloud/dbs/model/DescribeBackupGatewayListResult.h
|
|
include/alibabacloud/dbs/model/DescribeIncrementBackupListRequest.h
|
|
include/alibabacloud/dbs/model/DescribeIncrementBackupListResult.h
|
|
include/alibabacloud/dbs/model/ConfigureBackupPlanRequest.h
|
|
include/alibabacloud/dbs/model/ConfigureBackupPlanResult.h
|
|
include/alibabacloud/dbs/model/DescribeFullBackupListRequest.h
|
|
include/alibabacloud/dbs/model/DescribeFullBackupListResult.h )
|
|
|
|
set(dbs_src
|
|
src/DbsClient.cc
|
|
src/model/DescribeBackupPlanListRequest.cc
|
|
src/model/DescribeBackupPlanListResult.cc
|
|
src/model/StopBackupPlanRequest.cc
|
|
src/model/StopBackupPlanResult.cc
|
|
src/model/CreateBackupPlanRequest.cc
|
|
src/model/CreateBackupPlanResult.cc
|
|
src/model/StartBackupPlanRequest.cc
|
|
src/model/StartBackupPlanResult.cc
|
|
src/model/DescribeBackupGatewayListRequest.cc
|
|
src/model/DescribeBackupGatewayListResult.cc
|
|
src/model/DescribeIncrementBackupListRequest.cc
|
|
src/model/DescribeIncrementBackupListResult.cc
|
|
src/model/ConfigureBackupPlanRequest.cc
|
|
src/model/ConfigureBackupPlanResult.cc
|
|
src/model/DescribeFullBackupListRequest.cc
|
|
src/model/DescribeFullBackupListResult.cc )
|
|
|
|
add_library(dbs ${LIB_TYPE}
|
|
${dbs_public_header}
|
|
${dbs_public_header_model}
|
|
${dbs_src})
|
|
|
|
set_target_properties(dbs
|
|
PROPERTIES
|
|
LINKER_LANGUAGE CXX
|
|
ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib
|
|
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib
|
|
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
|
OUTPUT_NAME ${TARGET_OUTPUT_NAME_PREFIX}dbs
|
|
)
|
|
|
|
if(${LIB_TYPE} STREQUAL "SHARED")
|
|
set_target_properties(dbs
|
|
PROPERTIES
|
|
DEFINE_SYMBOL ALIBABACLOUD_DBS_LIBRARY)
|
|
endif()
|
|
|
|
target_include_directories(dbs
|
|
PRIVATE include
|
|
${CMAKE_SOURCE_DIR}/core/include
|
|
)
|
|
target_link_libraries(dbs
|
|
core)
|
|
|
|
if(CMAKE_HOST_WIN32)
|
|
ExternalProject_Get_Property(jsoncpp INSTALL_DIR)
|
|
set(jsoncpp_install_dir ${INSTALL_DIR})
|
|
add_dependencies(dbs
|
|
jsoncpp)
|
|
target_include_directories(dbs
|
|
PRIVATE ${jsoncpp_install_dir}/include)
|
|
target_link_libraries(dbs
|
|
${jsoncpp_install_dir}/lib/jsoncpp.lib)
|
|
set_target_properties(dbs
|
|
PROPERTIES
|
|
COMPILE_OPTIONS "/bigobj")
|
|
else()
|
|
target_include_directories(dbs
|
|
PRIVATE /usr/include/jsoncpp)
|
|
target_link_libraries(dbs
|
|
jsoncpp)
|
|
endif()
|
|
|
|
install(FILES ${dbs_public_header}
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/dbs)
|
|
install(FILES ${dbs_public_header_model}
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/alibabacloud/dbs/model)
|
|
install(TARGETS dbs
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
) |