diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2019-02-11 20:25:02 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2019-02-11 20:25:02 +0200 |
commit | 5fe4b752fec9b56da213c38127cab4e70efddc6d (patch) | |
tree | 1e30eb7629b9ced0604bd6bb4980667ffe46cf89 /doc/Development | |
parent | move add_global_arguments before build targets (diff) | |
download | smolbote-5fe4b752fec9b56da213c38127cab4e70efddc6d.tar.xz |
Add configure script
Configure script is not needed when building, it is provided as a
convenience tool. Requires python3.
Diffstat (limited to 'doc/Development')
-rw-r--r-- | doc/Development/meson.asciidoc | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/Development/meson.asciidoc b/doc/Development/meson.asciidoc deleted file mode 100644 index 1eb08c6..0000000 --- a/doc/Development/meson.asciidoc +++ /dev/null @@ -1,30 +0,0 @@ -==== Setting compiler -Compiler can only be set when initially configuring the build, and cannot be -changed with --reconfigure: - -[source, sh] ----- -export CXX="ccache clang++" -meson build-path ----- - -==== Setting linker -[source, sh] ----- -build% meson configure -Dcpp_link_args='-fuse_ld=gold' ----- - -==== Listing build options -[source, sh] ----- -build% meson configure ----- - -==== Changing build options -[source, sh] ----- -build% meson configure -D<option-name>=<enabled|disabled> -# for example: -build% meson configure -DPlasma=enabled ----- - |