diff options
author | Nao Pross <naopross@thearcway.org> | 2019-02-10 22:41:15 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2019-02-10 23:40:45 +0100 |
commit | c74446c3e6a88ffbb13743dcc9f3b93d10aa009d (patch) | |
tree | 99676f3822af99f272110b3c3afaaf1ecfc0c9dc /ninja/rules.ninja | |
parent | Merge remote-tracking branch 'github/master' (diff) | |
download | libmm-c74446c3e6a88ffbb13743dcc9f3b93d10aa009d.tar.gz libmm-c74446c3e6a88ffbb13743dcc9f3b93d10aa009d.zip |
Add CMake configuration, delete ninja files
The new CMake configuration builds only static libraries
Diffstat (limited to '')
-rw-r--r-- | ninja/rules.ninja | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ninja/rules.ninja b/ninja/rules.ninja deleted file mode 100644 index a17c01a..0000000 --- a/ninja/rules.ninja +++ /dev/null @@ -1,27 +0,0 @@ -includes = -I include/mm -cflags = -Wall -Werror -pedantic -fPIC -std=c++17 $includes - -libs = -lflags = $libs - -flags = -fdiagnostics-color - -rule mkdir - command = mkdir -p $out - description = creating directory $out - -rule cpp - command = g++ $flags $cflags -c $in -o $out $lflags - description = compiling $in - -rule link - command = g++ $flags $cflags -o $out $in $lflags - description = linking $out - -rule link-shared - command = g++ $flags $cflags -shared -o $out $in $lflags - description = linking shared object $out - -rule link-static - command = ar rvs $out $in - description = creating archive $out |