-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfiles.cmake
More file actions
71 lines (62 loc) · 1.5 KB
/
Copy pathfiles.cmake
File metadata and controls
71 lines (62 loc) · 1.5 KB
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
set(common_src
src/body/datagatherer.cpp
src/body/exit_funcs.cpp
src/body/failed_paths.cpp
src/body/menu_cases.cpp
src/body/mtrand.cpp
src/body/para_aux_funcs.cpp
src/body/point.cpp
src/body/random.cpp
src/body/runinfo.cpp
src/body/timing.cpp
src/body/xml_preferences.cpp
src/body/step1_funcs.cpp
)
set(common_headers
include/paramotopy/datagatherer.hpp
include/paramotopy/exit_funcs.hpp
include/paramotopy/failed_paths.hpp
include/paramotopy/menu_cases.hpp
include/paramotopy/mtrand.hpp
include/paramotopy/para_aux_funcs.hpp
include/paramotopy/point.hpp
include/paramotopy/random.hpp
include/paramotopy/runinfo.hpp
include/paramotopy/timing.hpp
include/paramotopy/xml_preferences.hpp
include/paramotopy/step1_funcs.hpp
)
set(common_headers
include/paramotopy/paramotopy_enum.hpp
)
set(para_src
src/paramotopy/paramotopy.cpp
)
set(para_headers
include/paramotopy/paramotopy_enum.hpp
include/paramotopy/paramotopy.hpp
)
set(step2_src
src/step2/step2.cpp
src/step2/controller.cpp
src/step2/worker.cpp
src/step2/step2_funcs.cpp
src/step2/step2readandwrite.cpp
)
set(step2_headers
include/paramotopy/step2.hpp
include/paramotopy/controller.hpp
include/paramotopy/worker.hpp
include/paramotopy/step2_funcs.hpp
include/paramotopy/step2readandwrite.hpp
)
set(libtinyxml_src
src/tinyxml/tinystr.cpp
src/tinyxml/tinyxml.cpp
src/tinyxml/tinyxmlerror.cpp
src/tinyxml/tinyxmlparser.cpp
)
set(libtinyxml_headers
include/paramotopy/tinystr.h
include/paramotopy/tinyxml.h
)