Marc Wäckerlin
fa173b95f4
|
6 years ago | |
---|---|---|
debian | 7 years ago | |
doc | 7 years ago | |
scripts | 6 years ago | |
AUTHORS | 9 years ago | |
COPYING | 7 years ago | |
ChangeLog | 6 years ago | |
INSTALL | 7 years ago | |
NEWS | 9 years ago | |
README.md | 6 years ago | |
autogen.sh | 9 years ago | |
ax_check_qt.m4 | 6 years ago | |
ax_cxx_compile_stdcxx_11.m4 | 8 years ago | |
ax_init_standard_project.m4 | 6 years ago | |
bootstrap-build-environment.desktop.in | 9 years ago | |
bootstrap-build-environment.spec.in | 6 years ago | |
bootstrap.sh | 6 years ago | |
build-in-docker.conf | 8 years ago | |
build-in-docker.sh | 6 years ago | |
build-resource-file.sh | ||
configure.ac | 7 years ago | |
dependency-graph.sh | 7 years ago | |
mac-create-app-bundle.sh | 6 years ago | |
makefile.am | 6 years ago | |
makefile_test.inc.am | 8 years ago | |
resolve-debbuilddeps.sh | 6 years ago | |
resolve-rpmbuilddeps.sh | 6 years ago | |
rpmsign.exp | 7 years ago | |
sql-to-dot.sed | 8 years ago | |
template.sh | 7 years ago |
README.md
Simplify Your Project Build Environment
Automake and Autoconf based build environment that especially supports and preconfigures:
- C++, including:
- QT (without qmake, just using the AutoTools)
- LibTool
- Library dependencies
- CPP-Unit
- PKG-Config dependency file
- Doxygen for documentation
- Scripts
- HTML / Web projects
- Examples
- Tests
- Debian packaging
- RPM packaging
- Mac OSX App Bundle creation
- Subversion
- SQL to Doxygen schema documentation
- Build in Docker
- Resolve package dependencies
- ...
Makefiles and other files are generated automatically, necessary build and dependency rules are automatically added. There are no redundancies. This reduces extremely the size of your configuration. The whole build system becomes extremely simple, lean and smart.
Simply setup a new project:
- create a subversion basic tree
- checkout subversion repository
- cd into the new project subversion working copy
- call with full path: /path/to/bootstrap.sh
- if trunk has been created, cd to trunk
- follow the instructions, i.e. edit configure.ac
- run again: /path/to/bootstrap.sh
- add some generated files: svn add COPYING ChangeLog INSTALL
- check files, i.e. all makefile.am, set Section in debian/control.in
- your project is setup and compilable, test: ./bootstrap.sh -b
For more details, see:
./bootstrap.sh -h
Example:
There is a just created empty subversion repository:
https://dev.marc.waeckerlin.org/svn/project-name
Setup a basic project:
svn co https://dev.marc.waeckerlin.org/svn/project-name
cd project-name
../bootstrap-build-environment/scripts/bootstrap.sh
cd trunk
The file AUTHORS is already correct due to my gnupg setup:
Firstname Lastname (https://my.homepage.xyz) <me@mysite.xyz>
Edit the file README, I add the following lines:
First line is the headline, the short description, e.g. in the packages
The following lines describe your project...
They also appear in the package description
Edit configure.ac, since I want to publish scripts, generate doxygen, debian and rpm packages, I enable the following lines:
AX_USE_SCRIPTS
AX_USE_DOXYGEN
AX_USE_DEBIAN_PACKAGING
AX_USE_RPM_PACKAGING
Also I check "Section" in debian/control.in and set it do development.
Then I continue, I rerun bootstrap.sh, this time with option -b which calls make distcheck at the end:
../../bootstrap-build-environment/scripts/bootstrap.sh -b
Add some additional files:
svn add trunk/{COPYING,INSTALL,ChangeLog}
Everything is fine, so checkin the changes and cleanup the system:
cd ..
svn ci -m "initial project creation"
cd ..
rm -rf project-name
svn co https://dev.marc.waeckerlin.org/svn/project-name/trunk project-name