#******************************************************************
#
# 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.
#
#-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

##
# ipcapp (application) build script
##
Import('ipca_env')
target_os = ipca_env.get('TARGET_OS')
ipcaapp_env = ipca_env.Clone()

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

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

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

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

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

######################################################################
# Source files and Targets
######################################################################
ipcapp_src = [
    'ipcaapp.cpp'
        ]

ipcaapp = ipcaapp_env.Program('ipcaapp', ipcapp_src)
