-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.cfg.sample
67 lines (58 loc) · 2.14 KB
/
build.cfg.sample
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
#------------------------------------------------------------
# [[APP_NAME]] ([[APP_URL]])
#
# @link [[APP_REPOSITORY_URL]]
# @copyright Copyright (c) [[COPYRIGHT_YEAR]] [[COPYRIGHT_HOLDER]]
# @license [[LICENSE_URL]] ([[LICENSE]])
#--------------------------------------------------------------
#----------------------------------------------
# User configuration that applies to both
# development and production environment
# Please see Free Pascal Documentation for available
# compiler configurations
#----------------------------------------------
#----------------------------------------------
# Target OS
# linux : Linux
# win64 : Windows (not tested yet)
# freebsd : FreeBSD (not tested yet)
#----------------------------------------------
-Tlinux
#----------------------------------------------
# Output Windows console application
#
# Uncomment if target OS is Windows
#----------------------------------------------
#-WC
#----------------------------------------------
# Target CPU
# x86_64 : Intel 64-bit architecture (default)
# i386 : Intel 32-bit architecture
#----------------------------------------------
#-Px86_64
#----------------------------------------------
# Application Unit search path
# USER_APP_DIR is contains user application base directory
#----------------------------------------------
-Fu$USER_APP_DIR$/Dependencies
-Fu$USER_APP_DIR$/Routes
-Fu$USER_APP_DIR$/App/Home/Controllers
-Fu$USER_APP_DIR$/App/Home/Controllers/Factories
-Fu$USER_APP_DIR$/App/Home/Views
-Fu$USER_APP_DIR$/App/Home/Views/Factories
#-Fu$USER_APP_DIR$/path/to/other/units
#-Fu$USER_APP_DIR$/path/to/other/units
#----------------------------------------------
# Application include search path
# USER_APP_DIR is contains user application base directory
#----------------------------------------------
-Fi$USER_APP_DIR$/Dependencies
-Fi$USER_APP_DIR$/Routes/home
#-Fu$USER_APP_DIR$/path/to/other/include/files
#----------------------------------------------
# Include configuration based on build type (default is prod)
# using #INCLUDE directive
# For example
# $ BUILD_TYPE=prod ./build.sh
#----------------------------------------------
#INCLUDE build.$BUILD_TYPE$.cfg