1 Star 0 Fork 5

xiejian/sfc

forked from zxlxz/sfc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 431 Bytes
一键复制 编辑 原始数据 按行查看 历史
lumpyzhu 提交于 2020-08-24 01:52 . update
cmake_minimum_required(VERSION 3.15)
project(sfc)
set(CMAKE_CXX_STANDARD 20)
add_compile_options("-W")
if(UNIX)
add_compile_options("-pthread")
add_link_options("-pthread")
endif()
include_directories(src)
file(GLOB_RECURSE sfc-src "src/sfc/*.cc")
add_library(sfc STATIC ${sfc-src})
file(GLOB_RECURSE test_src "test/main.cxx" "test/sfc/core/*.cxx")
add_executable(sfc_test ${test_src})
target_link_libraries(sfc_test sfc)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xiejian601/sfc.git
git@gitee.com:xiejian601/sfc.git
xiejian601
sfc
sfc
master

搜索帮助