2013-01-11 09:23:08 +00:00
|
|
|
# Copyright 2013 Ben Vanik. All Rights Reserved.
|
|
|
|
{
|
|
|
|
'includes': [
|
|
|
|
'tools/tools.gypi',
|
2013-05-24 00:39:03 +00:00
|
|
|
'third_party/beaengine.gypi',
|
2013-01-24 05:31:23 +00:00
|
|
|
'third_party/gflags.gypi',
|
2013-12-22 08:21:35 +00:00
|
|
|
'third_party/jansson.gypi',
|
2013-01-28 01:49:32 +00:00
|
|
|
'third_party/sparsehash.gypi',
|
2013-12-17 04:28:58 +00:00
|
|
|
'third_party/wslay.gypi',
|
2013-01-11 09:23:08 +00:00
|
|
|
],
|
|
|
|
|
2013-11-16 09:41:51 +00:00
|
|
|
'default_configuration': 'release',
|
|
|
|
|
|
|
|
'variables': {
|
|
|
|
'configurations': {
|
2013-11-16 09:58:42 +00:00
|
|
|
'Debug': {
|
2013-11-16 09:41:51 +00:00
|
|
|
},
|
2013-11-16 09:58:42 +00:00
|
|
|
'Release': {
|
2013-11-16 09:41:51 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'library%': 'static_library',
|
|
|
|
'target_arch%': 'x64',
|
|
|
|
},
|
|
|
|
|
|
|
|
'target_defaults': {
|
|
|
|
'include_dirs': [
|
|
|
|
'include/',
|
|
|
|
],
|
|
|
|
|
|
|
|
'defines': [
|
|
|
|
'__STDC_LIMIT_MACROS=1',
|
|
|
|
'__STDC_CONSTANT_MACROS=1',
|
|
|
|
'_ISOC99_SOURCE=1',
|
|
|
|
],
|
|
|
|
|
|
|
|
'conditions': [
|
|
|
|
['OS == "win"', {
|
|
|
|
'defines': [
|
|
|
|
'_WIN64=1',
|
|
|
|
'_AMD64_=1',
|
|
|
|
|
|
|
|
# HACK: it'd be nice to use the proper functions, when available.
|
|
|
|
'_CRT_SECURE_NO_WARNINGS=1',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
|
|
|
|
'cflags': [
|
|
|
|
#'-std=c99',
|
|
|
|
],
|
|
|
|
|
|
|
|
'configurations': {
|
|
|
|
'common_base': {
|
|
|
|
'abstract': 1,
|
|
|
|
|
|
|
|
'msvs_configuration_platform': 'x64',
|
|
|
|
'msvs_configuration_attributes': {
|
|
|
|
'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
|
|
|
|
'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
|
|
|
|
'CharacterSet': '1',
|
|
|
|
},
|
|
|
|
'msvs_disabled_warnings': [],
|
|
|
|
'msvs_configuration_platform': 'x64',
|
|
|
|
'msvs_cygwin_shell': '0',
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
#'MinimalRebuild': 'true',
|
|
|
|
'BufferSecurityCheck': 'true',
|
|
|
|
'EnableFunctionLevelLinking': 'true',
|
|
|
|
'RuntimeTypeInfo': 'false',
|
|
|
|
'WarningLevel': '3',
|
|
|
|
#'WarnAsError': 'true',
|
|
|
|
'DebugInformationFormat': '3',
|
|
|
|
'ExceptionHandling': '1', # /EHsc
|
|
|
|
'AdditionalOptions': [
|
|
|
|
#'/TP', # Compile as C++
|
|
|
|
'/EHsc', # C++ exception handling,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'GenerateDebugInformation': 'true',
|
|
|
|
#'LinkIncremental': '1', # 1 = NO, 2 = YES
|
|
|
|
'TargetMachine': '17', # x86 - 64
|
|
|
|
'AdditionalLibraryDirectories': [
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'scons_settings': {
|
|
|
|
'sconsbuild_dir': '<(DEPTH)/build/xenia/',
|
|
|
|
},
|
|
|
|
|
|
|
|
'xcode_settings': {
|
|
|
|
'SYMROOT': '<(DEPTH)/build/xenia/',
|
|
|
|
'ALWAYS_SEARCH_USER_PATHS': 'NO',
|
|
|
|
'ARCHS': ['x86_64'],
|
|
|
|
#'CLANG_CXX_LANGUAGE_STANDARD': 'c++0x',
|
|
|
|
'COMBINE_HIDPI_IMAGES': 'YES',
|
|
|
|
'GCC_C_LANGUAGE_STANDARD': 'gnu99',
|
|
|
|
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',
|
|
|
|
#'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES',
|
|
|
|
'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
|
|
|
|
'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
|
|
|
|
'WARNING_CFLAGS': ['-Wall', '-Wendif-labels'],
|
|
|
|
'LIBRARY_SEARCH_PATHS': [
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
'defines': [
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2013-11-16 09:58:42 +00:00
|
|
|
'Debug': {
|
2013-11-16 09:41:51 +00:00
|
|
|
'inherit_from': ['common_base',],
|
|
|
|
'defines': [
|
|
|
|
'DEBUG',
|
|
|
|
'ASMJIT_DEBUG=',
|
|
|
|
],
|
|
|
|
'msvs_configuration_attributes': {
|
2013-11-16 09:58:42 +00:00
|
|
|
'OutputDirectory': '<(DEPTH)\\build\\xenia\\Debug',
|
2013-11-16 09:41:51 +00:00
|
|
|
},
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'Optimization': '0',
|
|
|
|
'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2
|
|
|
|
'DebugInformationFormat': '3',
|
|
|
|
'ExceptionHandling': '0',
|
|
|
|
'RuntimeTypeInfo': 'false',
|
|
|
|
'OmitFramePointers': 'false',
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'LinkIncremental': '2',
|
|
|
|
'GenerateDebugInformation': 'true',
|
|
|
|
'StackReserveSize': '2097152',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'xcode_settings': {
|
|
|
|
'GCC_OPTIMIZATION_LEVEL': '0',
|
|
|
|
},
|
|
|
|
},
|
2013-11-16 09:58:42 +00:00
|
|
|
'Debug_x64': {
|
|
|
|
'inherit_from': ['Debug',],
|
2013-11-16 09:41:51 +00:00
|
|
|
},
|
|
|
|
|
2013-11-16 09:58:42 +00:00
|
|
|
'Release': {
|
2013-11-16 09:41:51 +00:00
|
|
|
'inherit_from': ['common_base',],
|
|
|
|
'defines': [
|
|
|
|
'RELEASE',
|
|
|
|
'NDEBUG',
|
|
|
|
],
|
|
|
|
'msvs_configuration_attributes': {
|
|
|
|
'OutputDirectory': '<(DEPTH)\\build\\xenia\\release',
|
|
|
|
},
|
|
|
|
'msvs_settings': {
|
|
|
|
'VCCLCompilerTool': {
|
|
|
|
'Optimization': '2',
|
|
|
|
'InlineFunctionExpansion': '2',
|
|
|
|
'EnableIntrinsicFunctions': 'true',
|
|
|
|
'FavorSizeOrSpeed': '0',
|
|
|
|
'ExceptionHandling': '0',
|
|
|
|
'RuntimeTypeInfo': 'false',
|
|
|
|
'OmitFramePointers': 'false',
|
|
|
|
'StringPooling': 'true',
|
|
|
|
},
|
|
|
|
'VCLinkerTool': {
|
|
|
|
'LinkIncremental': '1',
|
|
|
|
'GenerateDebugInformation': 'true',
|
|
|
|
'OptimizeReferences': '2',
|
|
|
|
'EnableCOMDATFolding': '2',
|
|
|
|
'StackReserveSize': '2097152',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2013-11-16 09:58:42 +00:00
|
|
|
'Release_x64': {
|
|
|
|
'inherit_from': ['Release',],
|
2013-11-16 09:41:51 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-01-11 09:23:08 +00:00
|
|
|
'targets': [
|
2013-12-07 06:57:16 +00:00
|
|
|
{
|
|
|
|
'target_name': 'alloy',
|
|
|
|
'product_name': 'alloy',
|
|
|
|
'type': 'static_library',
|
|
|
|
|
|
|
|
'dependencies': [
|
|
|
|
'gflags',
|
|
|
|
],
|
|
|
|
'export_dependent_settings': [
|
|
|
|
'gflags',
|
|
|
|
],
|
|
|
|
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'include_dirs': [
|
|
|
|
'src/',
|
|
|
|
],
|
|
|
|
|
|
|
|
'target_conditions': [
|
|
|
|
['_type=="shared_library"', {
|
|
|
|
'cflags': [
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
['_type=="executable"', {
|
|
|
|
'conditions': [
|
|
|
|
['OS == "win"', {
|
|
|
|
'libraries': [
|
|
|
|
'kernel32',
|
|
|
|
'user32',
|
|
|
|
'ole32',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
['OS == "mac"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'OTHER_LDFLAGS': [
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
['OS == "linux"', {
|
|
|
|
'libraries': [
|
|
|
|
'-lpthread',
|
|
|
|
'-ldl',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
'cflags': [
|
|
|
|
],
|
|
|
|
|
|
|
|
'include_dirs': [
|
|
|
|
'.',
|
|
|
|
'src/',
|
|
|
|
],
|
|
|
|
|
|
|
|
'includes': [
|
|
|
|
'src/alloy/sources.gypi',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2013-01-11 09:23:08 +00:00
|
|
|
{
|
2013-02-06 10:19:50 +00:00
|
|
|
'target_name': 'xenia',
|
|
|
|
'product_name': 'xenia',
|
2013-11-16 09:58:42 +00:00
|
|
|
'type': 'static_library',
|
2013-01-11 09:23:08 +00:00
|
|
|
|
2013-01-24 05:31:23 +00:00
|
|
|
'dependencies': [
|
2013-05-24 00:39:03 +00:00
|
|
|
'beaengine',
|
2013-01-24 05:31:23 +00:00
|
|
|
'gflags',
|
2013-12-22 08:21:35 +00:00
|
|
|
'jansson',
|
2013-12-17 04:28:58 +00:00
|
|
|
'wslay',
|
2013-12-07 06:57:16 +00:00
|
|
|
'alloy',
|
2013-01-24 05:31:23 +00:00
|
|
|
],
|
|
|
|
'export_dependent_settings': [
|
2013-05-24 00:39:03 +00:00
|
|
|
'beaengine',
|
2013-01-24 05:31:23 +00:00
|
|
|
'gflags',
|
2013-12-22 08:21:35 +00:00
|
|
|
'jansson',
|
2013-12-17 04:28:58 +00:00
|
|
|
'wslay',
|
2013-12-07 06:57:16 +00:00
|
|
|
'alloy',
|
2013-01-24 05:31:23 +00:00
|
|
|
],
|
|
|
|
|
2013-01-11 09:23:08 +00:00
|
|
|
'direct_dependent_settings': {
|
|
|
|
'include_dirs': [
|
2013-02-06 10:19:50 +00:00
|
|
|
'src/',
|
2013-01-28 06:14:24 +00:00
|
|
|
],
|
|
|
|
|
2013-01-13 07:25:41 +00:00
|
|
|
'target_conditions': [
|
|
|
|
['_type=="shared_library"', {
|
|
|
|
'cflags': [
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
['_type=="executable"', {
|
2013-01-30 19:03:19 +00:00
|
|
|
'conditions': [
|
2013-02-07 03:57:45 +00:00
|
|
|
['OS == "win"', {
|
2013-01-30 19:03:19 +00:00
|
|
|
'libraries': [
|
2013-10-18 06:35:54 +00:00
|
|
|
'kernel32',
|
|
|
|
'user32',
|
|
|
|
'ole32',
|
2013-02-07 03:57:45 +00:00
|
|
|
'wsock32',
|
2013-12-17 06:43:03 +00:00
|
|
|
'Ws2_32',
|
2013-10-12 03:23:58 +00:00
|
|
|
'dxgi',
|
|
|
|
'd3d11',
|
2013-10-18 06:35:54 +00:00
|
|
|
'd3dcompiler',
|
2013-10-24 05:42:48 +00:00
|
|
|
'xinput',
|
2013-01-30 19:03:19 +00:00
|
|
|
],
|
|
|
|
}],
|
|
|
|
['OS == "mac"', {
|
|
|
|
'xcode_settings': {
|
|
|
|
'OTHER_LDFLAGS': [
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}],
|
2013-02-10 20:21:56 +00:00
|
|
|
['OS == "linux"', {
|
|
|
|
'libraries': [
|
|
|
|
'-lpthread',
|
|
|
|
'-ldl',
|
|
|
|
],
|
|
|
|
}],
|
2013-01-13 07:25:41 +00:00
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2013-01-11 09:23:08 +00:00
|
|
|
},
|
2013-10-18 06:35:54 +00:00
|
|
|
'conditions': [
|
|
|
|
['OS == "win"', {
|
|
|
|
'copies': [
|
|
|
|
{
|
|
|
|
'files': [
|
|
|
|
# Depending on which SDK you have...
|
|
|
|
'<(windows_sdk_dir)/redist/d3d/x64/d3dcompiler_47.dll',
|
|
|
|
],
|
|
|
|
'destination': '<(PRODUCT_DIR)',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
2013-01-11 09:23:08 +00:00
|
|
|
|
|
|
|
'cflags': [
|
|
|
|
],
|
|
|
|
|
2013-01-13 07:25:41 +00:00
|
|
|
'include_dirs': [
|
|
|
|
'.',
|
|
|
|
'src/',
|
|
|
|
],
|
|
|
|
|
|
|
|
'includes': [
|
2013-02-06 10:19:50 +00:00
|
|
|
'src/xenia/sources.gypi',
|
2013-01-11 09:23:08 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|