forked from KhronosGroup/KTX-Software
-
Notifications
You must be signed in to change notification settings - Fork 4
/
libktx.gyp
30 lines (28 loc) · 1013 Bytes
/
libktx.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2015-2020 Mark Callow
# SPDX-License-Identifier: Apache-2.0
##
# @internal
#
# @brief Master for generating project files for building the KTX library,
#
# The command for generating msvs project files from this .gyp file is:
# gyp -f msvs -G msvs_version=<vername> --generator-output=build/msvs --depth=. ktx.gyp
# where <vername> is one of 2005, 2005e, 2008, 2008e, 2010, 2010e, 2012,
# 2012e, 2013 or 2013e. The suffix 'e' generates a project for the express edition.
#
# Other currently available formats are cmake, make, ninja and xcode.
#
# Is there a way to set --generator-output=DIR and --format=FORMATS a.k.a
# -f FORMATS from within the GYP file? I'd like people to just be able
# to run gyp on this file.
#
{
# Caution: variables set here will override any variables set above.
'includes': [
'gyp_include/config.gypi',
'gyp_include/default.gypi',
'lib/libktx.gypi',
'interface/js_binding/js_binding.gypi'
],
}
# vim:ai:ts=4:sts=4:sw=2:expandtab:textwidth=70