latest version bitmrc
This commit is contained in:
parent
369267ef39
commit
e6cfae9e6f
@ -28,16 +28,17 @@ function bitmrc.project()
|
|||||||
|
|
||||||
includedirs
|
includedirs
|
||||||
{
|
{
|
||||||
path.join(bitmrc.settings.source, "src"),
|
path.join(bitmrc.settings.source, "BitMRC/include"),
|
||||||
}
|
}
|
||||||
files
|
files
|
||||||
{
|
{
|
||||||
path.join(bitmrc.settings.source, "src/**.cc"),
|
path.join(bitmrc.settings.source, "BitMRC/**.cpp"),
|
||||||
}
|
}
|
||||||
removefiles
|
removefiles
|
||||||
{
|
{
|
||||||
-- path.join(bitmrc.settings.source, "src/**/*test.cc"),
|
-- path.join(bitmrc.settings.source, "src/**/*test.cc"),
|
||||||
path.join(bitmrc.settings.source, "BitMRC/main.cpp"),
|
path.join(bitmrc.settings.source, "BitMRC/main.cpp"),
|
||||||
|
path.join(bitmrc.settings.source, "BitMRC/tests/**"),
|
||||||
}
|
}
|
||||||
|
|
||||||
-- dependencies
|
-- dependencies
|
||||||
|
14
premake5.lua
14
premake5.lua
@ -134,8 +134,8 @@ require "premake/pdcurses"
|
|||||||
require "premake/protobuf"
|
require "premake/protobuf"
|
||||||
require "premake/winksignals"
|
require "premake/winksignals"
|
||||||
require "premake/zlib"
|
require "premake/zlib"
|
||||||
require "premake/bitmrc"
|
|
||||||
require "premake/libcryptopp"
|
require "premake/libcryptopp"
|
||||||
|
require "premake/bitmrc"
|
||||||
|
|
||||||
fmt.setup
|
fmt.setup
|
||||||
{
|
{
|
||||||
@ -184,14 +184,14 @@ zlib.setup
|
|||||||
},
|
},
|
||||||
source = path.join(depsBasePath, "zlib"),
|
source = path.join(depsBasePath, "zlib"),
|
||||||
}
|
}
|
||||||
bitmrc.setup
|
|
||||||
{
|
|
||||||
source = path.join(depsBasePath, "bitmrc"),
|
|
||||||
}
|
|
||||||
libcryptopp.setup
|
libcryptopp.setup
|
||||||
{
|
{
|
||||||
source = path.join(depsBasePath, "libcryptopp"),
|
source = path.join(depsBasePath, "libcryptopp"),
|
||||||
}
|
}
|
||||||
|
bitmrc.setup
|
||||||
|
{
|
||||||
|
source = path.join(depsBasePath, "bitmrc"),
|
||||||
|
}
|
||||||
|
|
||||||
workspace "iw4x"
|
workspace "iw4x"
|
||||||
location "./build"
|
location "./build"
|
||||||
@ -264,8 +264,8 @@ workspace "iw4x"
|
|||||||
protobuf.import()
|
protobuf.import()
|
||||||
winksignals.import()
|
winksignals.import()
|
||||||
zlib.import()
|
zlib.import()
|
||||||
bitmrc.import()
|
|
||||||
libcryptopp.import()
|
libcryptopp.import()
|
||||||
|
bitmrc.import()
|
||||||
|
|
||||||
-- fix vpaths for protobuf sources
|
-- fix vpaths for protobuf sources
|
||||||
vpaths
|
vpaths
|
||||||
@ -365,8 +365,8 @@ workspace "iw4x"
|
|||||||
winksignals.project()
|
winksignals.project()
|
||||||
zlib.project()
|
zlib.project()
|
||||||
protobuf.project()
|
protobuf.project()
|
||||||
bitmrc.project()
|
|
||||||
libcryptopp.project()
|
libcryptopp.project()
|
||||||
|
bitmrc.project()
|
||||||
|
|
||||||
rule "ProtobufCompiler"
|
rule "ProtobufCompiler"
|
||||||
display "Protobuf compiler"
|
display "Protobuf compiler"
|
||||||
|
Loading…
Reference in New Issue
Block a user