-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.cfg.sample
63 lines (56 loc) · 2.15 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
#------------------------------------------------------------
# Fano Web Framework Skeleton Application (https://fanoframework.github.io)
#
# @link https://github.com/fanoframework/fano-api
# @copyright Copyright (c) 2018 Zamrony P. Juhara
# @license https://github.com/fanoframework/fano-api/blob/master/LICENSE (GPL 3.0)
#-------------------------------------------------------------
#----------------------------------------------
# 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/Hi/Controllers
-Fu$USER_APP_DIR$/App/Hi/Controllers/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/Hi
#-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