加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PMake.txt 618 Bytes
一键复制 编辑 原始数据 按行查看 历史
Darius Blaszyk 提交于 2019-08-13 10:47 . replaced ANT by GLPT
compiler_minimum_required(3,0,0);
project('OpSim', '0.02');
//options
option('WITH_DEBUG', 'Enable debug info for OpSim', _ON_);
option('WITH_EXAMPLES', 'Enable building of examples for OpSim', _OFF_);
option('WITH_DOC', 'Enable documentation builder for OpSim', _OFF_);
//compiler options
if valb('WITH_DEBUG') then
begin
add_compile_option('-gl');
end;
add_subdirectory('extern');
add_subdirectory('intern');
add_subdirectory('source');
// create the package
create_package(
'$(PMAKE_PROJECT_NAME)-$(PROJECT_VERSION)-$(PMAKE_HOST_SYSTEM_PROCESSOR)-$(PMAKE_HOST_SYSTEM_NAME)'
);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化