2017-04-11 09:15:27 +02:00
|
|
|
--
|
2018-02-03 17:39:28 +01:00
|
|
|
-- Copyright 2010-2018 Branimir Karadzic. All rights reserved.
|
2017-04-11 09:15:27 +02:00
|
|
|
-- 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/**"),
|
2017-04-11 09:15:27 +02:00
|
|
|
path.join(BIMG_DIR, "src/image_decode.*"),
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration { "linux-*" }
|
|
|
|
buildoptions {
|
|
|
|
"-fPIC",
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration {}
|