protot/3rdparty/bimg/scripts/bimg_decode.lua

28 lines
559 B
Lua
Raw Normal View History

--
2018-02-03 17:39:28 +01:00
-- Copyright 2010-2018 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
--
project "bimg_decode"
kind "StaticLib"
includedirs {
path.join(BX_DIR, "include"),
path.join(BIMG_DIR, "include"),
path.join(BIMG_DIR, "3rdparty"),
path.join(BIMG_DIR, "3rdparty/nvtt"),
path.join(BIMG_DIR, "3rdparty/iqa/include"),
}
files {
2018-02-03 17:39:28 +01:00
path.join(BIMG_DIR, "include/**"),
path.join(BIMG_DIR, "src/image_decode.*"),
}
configuration { "linux-*" }
buildoptions {
"-fPIC",
}
configuration {}