1 Star 2 Fork 0

l7dpi/mare

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Marefile 855 Bytes
一键复制 编辑 原始数据 按行查看 历史
if (tool == "vcxproj") {
platforms = { "x64", "Win32" }
}
linkFlags += {
if tool == "vcxproj" { "/SUBSYSTEM:CONSOLE" }
}
cppFlags += {
if tool == "vcxproj" && configuration == "Release" { -"/O2", "/O1 /MT /GF" }
}
buildDir = "build/$(platform)/$(configuration)/$(target)"
targets = {
mare = cppApplication + {
dependencies = {
"libmare"
}
libs = {
"mare"
}
libPaths = {
"$(dir $(buildDir))/libmare"
}
includePaths = {
"src/libmare"
}
root = "src/mare"
files = {
"src/mare/**.cpp" = cppSource
"src/mare/**.h"
}
if (platform != "Win32" && platform != "x64") {
files -= "src/mare/Tools/Win32/**"
}
}
libmare = cppStaticLibrary + {
root = "src/libmare"
files = {
"src/libmare/**.cpp" = cppSource
"src/libmare/**.h"
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/l7dpi/mare.git
git@gitee.com:l7dpi/mare.git
l7dpi
mare
mare
master

搜索帮助