#!/bin/sh # # This file is part of the KD Soap project. # # SPDX-FileCopyrightText: 2017 Klarälvdalens Datakonsult AB, a KDAB Group company # # SPDX-License-Identifier: MIT # # Generate buildsystem files for a new subdir unset CDPATH subdir=$1 test -z "$subdir" && exit 1 test -d "$subdir" || exit 2 wsdlfiles=`cd $subdir ; ls -1 *.wsdl` cppfiles=`cd $subdir ; ls -1 *.cpp` # CMake cat > $subdir/CMakeLists.txt <> CMakeLists.txt