2 Star 1 Fork 0

wilbur / NaiveCCompiler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
cris 提交于 2017-05-13 12:58 . change install option
# /**
# * @file: CMakeLists.txt
# * @author: 胡文博
# * @email: huwenbo@mail.dlut.edu.cn
# * @dateTime: 2017-04-30 12:31:03
# * @description:
# */
project(ncc)
cmake_minimum_required(VERSION 2.8)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
include_directories("./src/virtualMachine")
aux_source_directory(./src/virtualMachine VMSRC_LIST)
add_executable( "nvm" ${VMSRC_LIST} )
install (TARGETS nvm DESTINATION bin)
include_directories("./src/compiler")
aux_source_directory(./src/compiler SRC_LIST)
add_executable(${PROJECT_NAME} ${SRC_LIST})
install ( TARGETS ${PROJECT_NAME} DESTINATION bin)
# install (DIRECTORY src/editor/images DESTINATION bin)
# install( FILES src/editor/commands.py src/editor/naiveAssemblykeywords.txt src/editor/naiveCkeywords.txt DESTINATION bin)
# install (FILES src/editor/Editor DESTINATION bin)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wilbur_dut/NaiveCCompiler.git
git@gitee.com:wilbur_dut/NaiveCCompiler.git
wilbur_dut
NaiveCCompiler
NaiveCCompiler
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891