-
Notifications
You must be signed in to change notification settings - Fork 3
/
ADAPT
71 lines (52 loc) · 2.54 KB
/
ADAPT
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
71
To adapt this template to your own project, follow these steps:
--------------------------------------------------------------------
In the root directory adapt/change/do the following:
[ ] Edit AUTHORS
[ ] Edit LICENSE
[ ] Edit README.md
[ ] Rename ./template-config.cmake -> <project>-config.cmake
CMakeLists.txt:
[ ] Set META_PROJECT_*
[ ] Set META_VERSION_*
[ ] Set META_AUTHOR_*
[ ] Set META_CMAKE_INIT_SHA (e.g., to 83d7cbc29a6fcb74a98498e5b0fcebd953d9d5cc)
[ ] Adjust INSTALL_* to the desired install locations for all systems (defaults should be fine for a start)
--------------------------------------------------------------------
--------------------------------------------------------------------
In subdirectory "./deploy/" do:
deploy/CMakeLists.txt:
[ ] Substitute pack-template.cmake -> pack-<project>.cmake
[ ] Exchange deploy/images/logo.ico
[ ] Exchange deploy/images/logo.bmp
[ ] Exchange deploy/images/logo.png
[ ] Rename deploy/packages/pack-template.cmake -> pack-<project>.cmake
deploy/packages/pack-<project>.cmake:
[ ] Adjust OPTION_PACK_GENERATOR to your liking for all systems
[ ] Adjust package options, e.g., CPACK_DEBIAN_PACKAGE_DEPENDS, CPACK_DEBIAN_PACKAGE_SECTION, CPACK_DEBIAN_PACKAGE_PRIORITY, CPACK_RPM_PACKAGE_LICENSE, CPACK_RPM_PACKAGE_GROUP, ...
--------------------------------------------------------------------
--------------------------------------------------------------------
In subdirectory "./source/fibcmd" do:
source/fibcmd/main.cpp:
[ ] Substitute template-version.h -> <project>-version.h
[ ] Substitute TEMPLATE_VERSION -> <PROJECT>_VERSION
--------------------------------------------------------------------
--------------------------------------------------------------------
In subdirectory "./docs/api-docs/" do:
docs/api-docs/doxyfile.in:
[ ] Adjust INPUT tag (list of doxygen annotated sources)
--------------------------------------------------------------------
--------------------------------------------------------------------
In subdirectory "./source/tests/" do:
source/tests/CMakeLists.txt:
[ ] Set META_PROJECT_NAME
--------------------------------------------------------------------
--------------------------------------------------------------------
General stuff left to do:
[ ] Rename and adjust projects in source/
[ ] Add new projects to source/CMakeLists.txt
[ ] Add new projects to ./{project}-config.cmake
[ ] Add new projects to docs/api-docs/doxyfile.in
[ ] Remove data/DATA_FOLDER.txt
[ ] Populate data/
[ ] Remove ADAPT
--------------------------------------------------------------------