-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build!: replace
configure.py
with a sample INI file
- Loading branch information
Showing
9 changed files
with
243 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[built-in options] | ||
|
||
;;; This file contains the build options for Iguana. Run `meson configure` | ||
;;; from the top-level `iguana` repository directory for further documentation | ||
|
||
|
||
;;; ------------------------------------------------ | ||
;;; Core options | ||
;;; ------------------------------------------------ | ||
|
||
;;; dependency resolution | ||
;;; - run the script `meson/resolve-dependencies.py` to help generate these options | ||
;;; - the examples here show the syntax, and are therefore commented out | ||
;;; - alternatively, use `meson setup -D` to set these options | ||
; pkg_config_path = ['/path/to/hipo-installation/lib/pkgconfig','/path/to/fmt-installation/lib/pkgconfig'] | ||
; cmake_prefix_path = ['/path/to/fmt-installation'] | ||
|
||
;;; build type to use | ||
;;; - 'release' is optimize and will run fast | ||
;;; - use 'debug' if you need debugging symbols, but the build will not be optimized | ||
;;; - see Meson documentation for more | ||
buildtype = 'release' | ||
|
||
|
||
;;; ------------------------------------------------ | ||
;;; Directories | ||
;;; ------------------------------------------------ | ||
|
||
;;; installation location | ||
;;; - you may prefer to use `meson setup` option `--prefix` instead, so this is commented out | ||
;;; - MUST be an absolute path | ||
; prefix = '/path/to/installation/of/iguana' | ||
|
||
|
||
;;; ------------------------------------------------ | ||
;;; Project options | ||
;;; ------------------------------------------------ | ||
|
||
;;; build and install the C++ examples | ||
examples = False | ||
|
||
;;; build and install the documentation (requires `doxygen`) | ||
documentation = False | ||
|
||
;;; build and install language bindings | ||
bind_python = False | ||
|
||
|
||
;;; ------------------------------------------------ | ||
;;; Constant settings (DO NOT EDIT) | ||
;;; ------------------------------------------------ | ||
libdir = 'lib' | ||
pkgconfig.relocatable = True |
Oops, something went wrong.