Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ test/log/
*.log
.cur*
.DS_Store

# OXC build artifacts
astra-sim-alibabacloud/build/simai_oxc/build/
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# CMake requirement
cmake_minimum_required(VERSION 3.15)

# 项目名称和设置
project(SimAI_oxc)

# 查找源文件
file(GLOB SOURCES "*.cc")
file(GLOB HEADERS "*.h")
include_directories("${PROJECT_SOURCE_DIR}/../../../")

# 查找 libcurl
find_package(CURL REQUIRED)

# 设置可执行文件
add_executable(SimAI_oxc ${SOURCES} ${HEADERS})

# 链接库
target_link_libraries(SimAI_oxc AstraSim CURL::libcurl)
Loading