28 lines
507 B
Lua
28 lines
507 B
Lua
|
--
|
||
|
-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
|
||
|
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
|
||
|
--
|
||
|
|
||
|
project "bimg_decode"
|
||
|
kind "StaticLib"
|
||
|
|
||
|
includedirs {
|
||
|
path.join(BIMG_DIR, "include"),
|
||
|
path.join(BIMG_DIR, "3rdparty"),
|
||
|
path.join(BIMG_DIR, "3rdparty/tinyexr/deps/miniz"),
|
||
|
}
|
||
|
|
||
|
files {
|
||
|
path.join(BIMG_DIR, "include/**"),
|
||
|
path.join(BIMG_DIR, "src/image_decode.*"),
|
||
|
}
|
||
|
|
||
|
using_bx()
|
||
|
|
||
|
configuration { "linux-*" }
|
||
|
buildoptions {
|
||
|
"-fPIC",
|
||
|
}
|
||
|
|
||
|
configuration {}
|