######################################################################################## # All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or # its licensors. # # For complete copyright and license terms please see the LICENSE at the root of this # distribution (the "License"). All use of this software is governed by the License, # or, if provided, by the license below or the license accompanying this file. Do not # remove or modify any license notices. This file is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # ######################################################################################## def build(bld): import lumberyard_sdks kw = dict( #============================== # Settings #============================== vs_filter = 'Game/CloudGemSamples', file_list = ['game.waf_files'], platforms = ['all'], configurations = ['all'], pch = 'StdAfx.cpp', use = ['AzGameFramework', 'CloudGemFramework.StaticLibrary'], is_game_gem = True, #============================== # Common #============================== includes = [ '.' , bld.Path('Code/CryEngine/CryCommon'), bld.Path('Code/CryEngine/CrySystem') ], #============================== # Windows #============================== win_lib = ['gdi32'], #============================== # iOS # 'ios_output_file_name' must match both # 'executable_name' in 'project.json' and # 'Executable file' in '../Resources/IOSLauncher/Info.plist' #============================== ios_output_file_name = 'CloudGemSamplesLauncher', ios_file_list = ['game_ios.waf_files'], #============================== # AppleTV # 'appletv_output_file_name' must match both # 'executable_name' in 'project.json' and # 'Executable file' in '../Resources/AppleTVLauncher/Info.plist' #============================== appletv_output_file_name = 'CloudGemSamplesLauncher', appletv_file_list = ['game_appletv.waf_files'], #============================== # Darwin #============================== darwin_file_list = ['game_mac.waf_files'], #============================== # Testing #============================== test_all_file_list = ['cloudgemsamples_tests.waf_files'] ) bld.DefineGem(**kw)