summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorPrzemyslaw Czarnowski <przemyslaw.hawrylewicz.czarnowski@intel.com>2022-02-14 12:26:50 +0300
committerGitHub <noreply@github.com>2022-02-14 12:26:50 +0300
commit1fb7beae5e97aadf8471ae7b6e07f5c2e5f33c78 (patch)
treefc905cdb67494c5b7b59cb21465483f6d0464b31 /.gitignore
parent6df74a76eeacc5240d36fa7e62717cd1cdd238a7 (diff)
downloadvirtual-media-1fb7beae5e97aadf8471ae7b6e07f5c2e5f33c78.tar.xz
Switch the build system to meson
Due to requirements from community, new projects have to be built with meson. To unify with other projects some additional warnings has been enabled, so appropriate code updates has been implemented. This commit makes both meson and CMake available to simplyfy transition in openbmc. CMake support will be removed after switching to meson in openbmc will be accepted. Tested: Compiled and smoke tested. Signed-off-by: Przemyslaw Czarnowski <przemyslaw.hawrylewicz.czarnowski@intel.com>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore24
1 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2e19e70
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,24 @@
+### Meson ###
+# subproject directories
+/subprojects/*
+!/subprojects/*.wrap
+!/subprojects/packagefiles
+
+# Meson Directories
+meson-logs
+meson-private
+
+# Meson Files
+meson_benchmark_setup.dat
+meson_test_setup.dat
+sanitycheckcpp.cc # C++ specific
+sanitycheckcpp.exe # C++ specific
+
+# Ninja
+build.ninja
+.ninja_deps
+.ninja_logs
+# Misc
+compile_commands.json
+
+build*/*