1 Star 0 Fork 0

2144/stb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
2144 提交于 2024-07-29 23:13 . 2024-07-29 23:13:18
cmake_minimum_required(VERSION 3.5.0)
project(stb_project)
set(CMAKE_CXX_STANDARD 17)
file(GLOB stb_src stb/*.c)
add_library(stb ${stb_src})
file(GLOB header_src stb/*.h)
if(WIN32)
# Install header files
install(DIRECTORY stb DESTINATION /usr/local/include/)
# Optionally, you can also include configuration files, documentation, etc.
# For example, install README.md to the root of the install directory
install(TARGETS stb DESTINATION /usr/local/lib)
endif()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iamherer/stb.git
git@gitee.com:iamherer/stb.git
iamherer
stb
stb
master

搜索帮助