加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 633 Bytes
一键复制 编辑 原始数据 按行查看 历史
cmake_minimum_required(VERSION 3.7)
project(tf)
# This is a dummy CMakeLists file for CLion, which still doesn't understand Makefiles.
# Do not try to build the library using this file, it's here only for static analysis.
set(CMAKE_CXX_STANDARD GNU89)
set(SOURCE_FILES
demo/simple/test.c
demo/socket_demo/master.c
demo/socket_demo/slave.c
demo/socket_demo/TF_Config.h
demo/demo.c
demo/demo.h
TinyFrame.c
TinyFrame.h
TF_Config.example.h
demo/utils.c
demo/utils.h
)
include_directories(demo/simple)
add_executable(tf ${SOURCE_FILES})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化