-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGenerateCMakeFiles.sh
executable file
·71 lines (60 loc) · 3.23 KB
/
GenerateCMakeFiles.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
#
# Copyright (C) 2020-2025 Radek Malcic
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OS=$(uname -a | cut -d ' ' -f 1)
if [ "${OS}" == "Linux" ]; then
START=$(date +%s.%N)
fi
source upp_cmake/GenerateCMakeFiles-lib.sh
GENERATE_VERBOSE="1" # set to "1" - enable additional output during script processing on the screen
GENERATE_DEBUG="0" # set to "1" - enable debug output during script processing on the screen
GENERATE_PACKAGE="1" # set to "1" - create a tarball package of the project
#GENERATE_NOT_Cxx="1" # set to "1" - do not use compiler -std=c++14 parameter (compiler parameter is enabled as default)
#GENERATE_NOT_PARALLEL="1" # set to "1" - do not build with multiple processes (parralel build is enabled as default)
GENERATE_NOT_PCH="1" # set to "1" - do not build with precompiled header support (precompiled header support is enabled as default)
if [ "${OS}" == "SunOS" ]; then
GENERATE_NOT_REMOVE_UNUSED_CODE="1" # set to "1" - do not use compile and link parameters to remove unused code and functions (unused code and functions are removed as default)
fi
CMAKE_VERBOSE_OVERWRITE="0" # set to "0" - do not generate cmake verbose makefile output (even when the debug flag is set)
#CMAKE_VERBOSE_OVERWRITE="1" # set to "1" - always generate cmake verbose makefile output
UPP_SRC_BASE="ultimatepp"
UPP_SRC_DIR="${UPP_SRC_BASE}/uppsrc"
PROJECT_NAME="app/PxView/PxView.upp"
PROJECT_EXTRA_INCLUDE_DIR=""
PROJECT_EXTRA_INCLUDE_SUBDIRS=""
PROJECT_EXTRA_COMPILE_FLAGS="-Wno-nontrivial-memaccess"
PROJECT_EXTRA_LINK_FLAGS=""
if [ $# -lt 1 ]; then
echo "# POSIX build"
PROJECT_FLAGS="-DflagGUI -DflagMT -DflagGCC -DflagLINUX -DflagPOSIX -DflagSHARED"
else
echo "# WINDOWS build"
PROJECT_FLAGS="-DflagGUI -DflagMT -DflagGCC -DflagPOSIX"
fi
generate_main_cmake_file "${PROJECT_NAME}" "${PROJECT_FLAGS}"
if [ "${OS}" == "Linux" ]; then
DUR=$(echo "$(date +%s.%N) - ${START}" | bc)
echo "Execution time: $(date -d@0${DUR} -u +%H:%M:%S.%N)"
fi