| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- --
- -- Copyright 2010-2025 Branimir Karadzic. All rights reserved.
- -- License: https://github.com/bkaradzic/bimg/blob/master/LICENSE
- --
- project "texturec"
- kind "ConsoleApp"
- includedirs {
- path.join(BIMG_DIR, "include"),
- }
- files {
- path.join(BIMG_DIR, "tools/texturec/**.cpp"),
- path.join(BIMG_DIR, "tools/texturec/**.h"),
- }
- links {
- "bimg_decode",
- "bimg_encode",
- "bimg",
- }
- if _OPTIONS["with-libheif"] then
- links {
- "heif",
- }
- configuration {}
- end
- using_bx()
- configuration { "mingw-*" }
- targetextension ".exe"
- configuration { "osx*" }
- links {
- "Cocoa.framework",
- }
- configuration { "vs20* or mingw*" }
- links {
- "psapi",
- }
- configuration {}
|