forked from SDL-Hercules-390/decNumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsources.txt
28 lines (22 loc) · 940 Bytes
/
sources.txt
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
#------------------------------------------------------------------------------
# Construct a list of this project's source files
#------------------------------------------------------------------------------
# PROGRAMMING NOTE: do NOT use GLOB to collect a list of source files from
# your source tree because, if no "CMakeLists.txt" file changes when a file
# is added or removed from your project, then the previously generated build
# system will never know to ask CMake to regenerate itself to reflect the
# newly added/removed files(s).
set( ${PROJECT_NAME}_SRCS
decnumber_version.c
source/decContext.c
source/decDouble.c
source/decNumber.c
source/decPacked.c
source/decQuad.c
source/decSingle.c
source/decimal128.c
source/decimal32.c
source/decimal64.c
)
list( SORT ${PROJECT_NAME}_SRCS )
#------------------------------------------------------------------------------