-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
3,688 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
cmake-build-debug/ | ||
runtime/ | ||
|
||
# Google Test-generated files | ||
DartConfiguration.tcl | ||
*.pc | ||
|
||
# Created by https://www.gitignore.io/api/osx,c++,vim,linux,emacs,windows,sublimetext,visualstudiocode,cmake | ||
|
||
### C++ ### | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
### CMake ### | ||
CMakeCache.txt | ||
CMakeFiles | ||
CMakeScripts | ||
Testing | ||
Makefile | ||
cmake_install.cmake | ||
install_manifest.txt | ||
compile_commands.json | ||
CTestTestfile.cmake | ||
build/ | ||
cmake_build/ | ||
|
||
### Emacs ### | ||
# -*- mode: gitignore; -*- | ||
*~ | ||
\#*\# | ||
/.emacs.desktop | ||
/.emacs.desktop.lock | ||
*.elc | ||
auto-save-list | ||
tramp | ||
.\#* | ||
|
||
# Org-mode | ||
.org-id-locations | ||
*_archive | ||
|
||
# flymake-mode | ||
*_flymake.* | ||
|
||
# eshell files | ||
/eshell/history | ||
/eshell/lastdir | ||
|
||
# elpa packages | ||
/elpa/ | ||
|
||
# reftex files | ||
*.rel | ||
|
||
# AUCTeX auto folder | ||
/auto/ | ||
|
||
# cask packages | ||
.cask/ | ||
dist/ | ||
|
||
# Flycheck | ||
flycheck_*.el | ||
|
||
# server auth directory | ||
/server/ | ||
|
||
# projectiles files | ||
.projectile | ||
projectile-bookmarks.eld | ||
|
||
# directory configuration | ||
.dir-locals.el | ||
|
||
# saveplace | ||
places | ||
|
||
# url cache | ||
url/cache/ | ||
|
||
# cedet | ||
ede-projects.el | ||
|
||
# smex | ||
smex-items | ||
|
||
# company-statistics | ||
company-statistics-cache.el | ||
|
||
# anaconda-mode | ||
anaconda-mode/ | ||
|
||
### Linux ### | ||
|
||
# temporary files which can be created if a process still has a handle open of a deleted file | ||
.fuse_hidden* | ||
|
||
# KDE directory preferences | ||
.directory | ||
|
||
# Linux trash folder which might appear on any partition or disk | ||
.Trash-* | ||
|
||
# .nfs files are created when an open file is removed but is still being accessed | ||
.nfs* | ||
|
||
### OSX ### | ||
*.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
### SublimeText ### | ||
# cache files for sublime text | ||
*.tmlanguage.cache | ||
*.tmPreferences.cache | ||
*.stTheme.cache | ||
|
||
# workspace files are user-specific | ||
*.sublime-workspace | ||
|
||
# project files should be checked into the repository, unless a significant | ||
# proportion of contributors will probably not be using SublimeText | ||
# *.sublime-project | ||
|
||
# sftp configuration file | ||
sftp-config.json | ||
|
||
# Package control specific files | ||
Package Control.last-run | ||
Package Control.ca-list | ||
Package Control.ca-bundle | ||
Package Control.system-ca-bundle | ||
Package Control.cache/ | ||
Package Control.ca-certs/ | ||
Package Control.merged-ca-bundle | ||
Package Control.user-ca-bundle | ||
oscrypto-ca-bundle.crt | ||
bh_unicode_properties.cache | ||
|
||
# Sublime-github package stores a github token in this file | ||
# https://packagecontrol.io/packages/sublime-github | ||
GitHub.sublime-settings | ||
|
||
### Vim ### | ||
# swap | ||
.sw[a-p] | ||
.*.sw[a-p] | ||
# session | ||
Session.vim | ||
# temporary | ||
.netrwhist | ||
# auto-generated tag files | ||
tags | ||
|
||
### VisualStudioCode ### | ||
.vscode/ | ||
# !.vscode/settings.json | ||
# !.vscode/tasks.json | ||
# !.vscode/launch.json | ||
# !.vscode/extensions.json | ||
.history | ||
|
||
### IDEA ### | ||
.idea/ | ||
|
||
### Windows ### | ||
# Windows thumbnail cache files | ||
Thumbs.db | ||
ehthumbs.db | ||
ehthumbs_vista.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msm | ||
*.msp | ||
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
|
||
# End of https://www.gitignore.io/api/osx,c++,vim,linux,emacs,windows,sublimetext,visualstudiocode,cmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
|
||
cmake_minimum_required(VERSION 3.11 FATAL_ERROR) | ||
|
||
project(alibabacloud_rai20240701 VERSION "0.1.0") | ||
|
||
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< General set up >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # | ||
set(CMAKE_CXX_STANDARD 11) | ||
set(CMAKE_CXX_EXTENSIONS OFF) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") | ||
message("C++ compiler flags: ${CMAKE_CXX_FLAGS}") | ||
|
||
if (CMAKE_CXX_COMPILER_LOADED) | ||
message(STATUS "The C++ compiler ID is: ${CMAKE_CXX_COMPILER_ID}") | ||
message(STATUS "The C++ compiler version is: ${CMAKE_CXX_COMPILER_VERSION}") | ||
endif () | ||
|
||
if (NOT CMAKE_BUILD_TYPE) | ||
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE) | ||
endif () | ||
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}") | ||
|
||
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Target set up >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # | ||
add_library(${PROJECT_NAME} SHARED "") | ||
set(headers | ||
include/alibabacloud/rai20240701.hpp) | ||
target_sources(${PROJECT_NAME} | ||
PRIVATE | ||
src/rai20240701.cpp | ||
${headers}) | ||
target_include_directories(${PROJECT_NAME} | ||
PRIVATE | ||
${CMAKE_CURRENT_SOURCE_DIR}/include) | ||
set_target_properties(${PROJECT_NAME} | ||
PROPERTIES | ||
POSITION_INDEPENDENT_CODE 1 | ||
SOVERSION ${PROJECT_VERSION_MAJOR} | ||
OUTPUT_NAME "${PROJECT_NAME}" | ||
DEBUG_POSTFIX "_d" | ||
PUBLIC_HEADER "${headers}" | ||
MACOSX_RPATH ON | ||
WINDOWS_EXPORT_ALL_SYMBOLS ON) | ||
|
||
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< External set up >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # | ||
add_subdirectory(external) | ||
find_package(Boost REQUIRED COMPONENTS random system thread filesystem chrono atomic date_time regex) | ||
find_library(CPPREST_LIB cpprest) | ||
target_link_libraries(${PROJECT_NAME} PRIVATE crypto darabonba_util alibabacloud_open_api alibabacloud_open_api_util alibabacloud_endpoint_util darabonba_core ${Boost_LIBRARIES} ${CPPREST_LIB}) | ||
|
||
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Install set up >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # | ||
message(STATUS "${PROJECT_NAME} : Project will be installed to ${CMAKE_INSTALL_PREFIX}") | ||
|
||
include(GNUInstallDirs) | ||
|
||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}) | ||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}) | ||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}) | ||
|
||
set(INSTALL_LIBDIR ${CMAKE_INSTALL_LIBDIR} CACHE PATH "Installation directory for libraries") | ||
set(INSTALL_BINDIR ${CMAKE_INSTALL_BINDIR} CACHE PATH "Installation directory for executables") | ||
set(INSTALL_INCLUDEDIR ${CMAKE_INSTALL_INCLUDEDIR} CACHE PATH "Installation directory for header files") | ||
if(WIN32 AND NOT CYGWIN) | ||
set(DEF_INSTALL_CMAKEDIR CMake) | ||
else() | ||
set(DEF_INSTALL_CMAKEDIR share/cmake/${PROJECT_NAME}) | ||
endif() | ||
set(INSTALL_CMAKEDIR ${DEF_INSTALL_CMAKEDIR} CACHE PATH "Installation directory for CMake files") | ||
|
||
foreach(p LIB BIN INCLUDE CMAKE) | ||
file(TO_NATIVE_PATH ${CMAKE_INSTALL_PREFIX}/${INSTALL_${p}DIR} _path ) | ||
message(STATUS "Installing ${p} components to ${_path}") | ||
unset(_path) | ||
endforeach() | ||
|
||
# Prepare RPATH | ||
file(RELATIVE_PATH _rel ${CMAKE_INSTALL_PREFIX}/${INSTALL_BINDIR} ${CMAKE_INSTALL_PREFIX}) | ||
if(APPLE) | ||
set(_rpath "@loader_path/${_rel}") | ||
else() | ||
set(_rpath "\$ORIGIN/${_rel}") | ||
endif() | ||
file(TO_NATIVE_PATH "${_rpath}/${INSTALL_LIBDIR}" install_RPATH) | ||
|
||
set_target_properties(${PROJECT_NAME} | ||
PROPERTIES | ||
MACOSX_RPATH ON | ||
SKIP_BUILD_RPATH OFF | ||
BUILD_WITH_INSTALL_RPATH OFF | ||
INSTALL_RPATH "${install_RPATH}" | ||
INSTALL_RPATH_USE_LINK_PATH ON) | ||
|
||
install( | ||
TARGETS | ||
${PROJECT_NAME} | ||
EXPORT | ||
alibabacloud_rai20240701Targets | ||
ARCHIVE | ||
DESTINATION ${INSTALL_LIBDIR} | ||
COMPONENT lib | ||
RUNTIME | ||
DESTINATION ${INSTALL_BINDIR} | ||
COMPONENT bin | ||
LIBRARY | ||
DESTINATION ${INSTALL_LIBDIR} | ||
COMPONENT lib | ||
PUBLIC_HEADER | ||
DESTINATION ${INSTALL_INCLUDEDIR}/alibabacloud | ||
COMPONENT dev | ||
) | ||
|
||
# Install cmake config | ||
install( | ||
EXPORT | ||
alibabacloud_rai20240701Targets | ||
NAMESPACE | ||
"alibabacloud_rai20240701::" | ||
DESTINATION | ||
${INSTALL_CMAKEDIR} | ||
COMPONENT | ||
dev | ||
) | ||
include(CMakePackageConfigHelpers) | ||
|
||
write_basic_package_version_file( | ||
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake | ||
VERSION ${PROJECT_VERSION} | ||
COMPATIBILITY SameMajorVersion | ||
) | ||
configure_package_config_file( | ||
${PROJECT_SOURCE_DIR}/cmake/${PROJECT_NAME}Config.cmake.in | ||
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake | ||
INSTALL_DESTINATION ${INSTALL_CMAKEDIR} | ||
) | ||
install( | ||
FILES | ||
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake | ||
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake | ||
DESTINATION | ||
${INSTALL_CMAKEDIR} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
2025-01-08 Version: 1.0.0 | ||
- Generated cpp 2024-07-01 for RAI. | ||
|
Oops, something went wrong.