1 Star 0 Fork 0

testOrgOpenFOAM/CodeStudy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gen_cmake_list.sh 574 Bytes
一键复制 编辑 原始数据 按行查看 历史
tttt 提交于 2023-09-17 00:35 . update
#!/bin/bash
# 设置生成的 CMakeLists.txt 文件名
output_file="CMakeLists.txt"
# 写入基本的 CMake 功能到文件
cat <<EOL > $output_file
# 最低 CMake 版本要求
cmake_minimum_required(VERSION 3.0)
# 设置项目名称
project(MyProject)
# 添加可执行文件
add_executable(my_executable main.cpp)
# 添加源文件到可执行文件
target_sources(my_executable PRIVATE
source_file_1.cpp
source_file_2.cpp
)
# 添加头文件目录
target_include_directories(my_executable PRIVATE
include
)
EOL
echo "CMakeLists.txt 文件已生成!"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/test-org-open-foam/code-study.git
git@gitee.com:test-org-open-foam/code-study.git
test-org-open-foam
code-study
CodeStudy
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385