1 Star 0 Fork 0

anyway/iguana

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 667 Bytes
一键复制 编辑 原始数据 按行查看 历史
qicosmos 提交于 2017-12-04 11:53 . support disorder parse
cmake_minimum_required(VERSION 2.8)
project(iguana)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++17")
set(CMAKE_CXX_LINK_EXECUTABLE "${CMAKE_CXX_LINK_EXECUTABLE} -ldl")
set(IGUANA_DIR ${CMAKE_CURRENT_SOURCE_DIR})
include_directories(
${IGUANA_DIR}
${IGUANA_DIR}/third_party/msgpack/include
)
set(EXAMPLE
example/example.cpp
)
set(JSON_EXAMPLE
example/json_example.cpp
)
set(XML_EXAMPLE
example/xml_example.cpp
)
set(MSGPACK_EXAMPLE
example/msgpack_example.cpp
)
add_executable(example ${EXAMPLE})
add_executable(json_example ${JSON_EXAMPLE})
add_executable(xml_example ${XML_EXAMPLE})
add_executable(msgpack_example ${MSGPACK_EXAMPLE})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qianyongFeng/iguana.git
git@gitee.com:qianyongFeng/iguana.git
qianyongFeng
iguana
iguana
master

搜索帮助