#******************************************************************
#
# Copyright 2017 Microsoft
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

##
# ElevatorClient (application) build script
##
Import('ipca_env')
target_os = ipca_env.get('TARGET_OS')
elevator_client_env = ipca_env.Clone()

######################################################################
# Build flags
######################################################################
elevator_client_env.PrependUnique(CPPPATH = [
        '../../inc',
        ])

elevator_client_env.PrependUnique(LIBS = ['ipca'])

if target_os not in ['windows', 'msys_nt']:
    elevator_client_env.AppendUnique(LIBS = ['dl'])

if 'g++' in elevator_client_env.get('CXX'):
    elevator_client_env.AppendUnique(CXXFLAGS = ['-Wall', '-std=c++0x'])

if target_os in ['linux']:
    if not elevator_client_env.get('RELEASE'):
        elevator_client_env.PrependUnique(LIBS = ['gcov'])
        elevator_client_env.AppendUnique(CXXFLAGS = ['--coverage'])

elevator_client_src = [
    'ElevatorClient.cpp',
    'OCFDevice.cpp'
        ]
######################################################################
# Source files and Targets
######################################################################
ipcapp = elevator_client_env.Program('elevatorclient', elevator_client_src)
