summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2018-05-21 19:56:32 +0200
committerStefan Sauer <ensonic@users.sf.net>2018-05-21 19:56:32 +0200
commit360250091425f33e84d41e59f7f071e992929333 (patch)
tree8da4bcb482ba3fb5ed369dd6da5f6815ef73bee0
parent8732e96da0568e959e0abf66c02e30fafe21a6d5 (diff)
downloadgtk-doc-360250091425f33e84d41e59f7f071e992929333.tar.gz
meson: remove superflous build files
We don't need to build those sources. We only scan them.
-rw-r--r--tests/annotations/meson.build1
-rw-r--r--tests/annotations/src/meson.build26
-rw-r--r--tests/bugs/meson.build1
-rw-r--r--tests/bugs/src/meson.build25
-rw-r--r--tests/empty/meson.build1
-rw-r--r--tests/empty/src/meson.build26
-rw-r--r--tests/fail/meson.build1
-rw-r--r--tests/fail/src/meson.build25
-rw-r--r--tests/meson.build3
-rw-r--r--tests/program/meson.build1
-rw-r--r--tests/program/src/meson.build10
-rw-r--r--tests/repro/meson.build1
-rw-r--r--tests/repro/src/meson.build25
13 files changed, 1 insertions, 145 deletions
diff --git a/tests/annotations/meson.build b/tests/annotations/meson.build
index dc00692..c171ea1 100644
--- a/tests/annotations/meson.build
+++ b/tests/annotations/meson.build
@@ -1,2 +1 @@
-subdir('src')
subdir('docs') \ No newline at end of file
diff --git a/tests/annotations/src/meson.build b/tests/annotations/src/meson.build
deleted file mode 100644
index 076bdf2..0000000
--- a/tests/annotations/src/meson.build
+++ /dev/null
@@ -1,26 +0,0 @@
-annotations_test_public_h = [
- 'tester.h',
-]
-
-annotations_test_c = [
- 'tester.c',
-]
-
-annotations_test_deps = [
- glib_dep,
- gobject_dep,
-]
-
-annotations_test_lib = shared_library(
- 'annotationstester',
- sources: annotations_test_c,
- dependencies: annotations_test_deps,
- install: false,
-)
-
-annotations_test_dep = declare_dependency(
- link_with: annotations_test_lib,
- include_directories: include_directories('.'),
- dependencies: annotations_test_deps,
- sources: annotations_test_public_h,
-) \ No newline at end of file
diff --git a/tests/bugs/meson.build b/tests/bugs/meson.build
index dc00692..c171ea1 100644
--- a/tests/bugs/meson.build
+++ b/tests/bugs/meson.build
@@ -1,2 +1 @@
-subdir('src')
subdir('docs') \ No newline at end of file
diff --git a/tests/bugs/src/meson.build b/tests/bugs/src/meson.build
deleted file mode 100644
index a1c3992..0000000
--- a/tests/bugs/src/meson.build
+++ /dev/null
@@ -1,25 +0,0 @@
-bugs_test_public_h = [
- 'tester.h',
-]
-
-bugs_test_c = [
- 'tester.c',
-]
-
-bugs_test_deps = [
- glib_dep,
-]
-
-bugs_test_lib = shared_library(
- 'bugstester',
- sources: bugs_test_c,
- dependencies: bugs_test_deps,
- install: false,
-)
-
-bugs_test_dep = declare_dependency(
- link_with: bugs_test_lib,
- include_directories: include_directories('.'),
- dependencies: bugs_test_deps,
- sources: bugs_test_public_h,
-) \ No newline at end of file
diff --git a/tests/empty/meson.build b/tests/empty/meson.build
index dc00692..c171ea1 100644
--- a/tests/empty/meson.build
+++ b/tests/empty/meson.build
@@ -1,2 +1 @@
-subdir('src')
subdir('docs') \ No newline at end of file
diff --git a/tests/empty/src/meson.build b/tests/empty/src/meson.build
deleted file mode 100644
index 881af67..0000000
--- a/tests/empty/src/meson.build
+++ /dev/null
@@ -1,26 +0,0 @@
-empty_test_public_h = [
- 'tester.h',
-]
-
-empty_test_c = [
- 'tester.c',
-]
-
-empty_test_deps = [
- glib_dep,
- gobject_dep,
-]
-
-empty_test_lib = shared_library(
- 'emptytester',
- sources: empty_test_c,
- dependencies: empty_test_deps,
- install: false,
-)
-
-empty_test_dep = declare_dependency(
- link_with: empty_test_lib,
- include_directories: include_directories('.'),
- dependencies: empty_test_deps,
- sources: empty_test_public_h,
-) \ No newline at end of file
diff --git a/tests/fail/meson.build b/tests/fail/meson.build
index dc00692..c171ea1 100644
--- a/tests/fail/meson.build
+++ b/tests/fail/meson.build
@@ -1,2 +1 @@
-subdir('src')
subdir('docs') \ No newline at end of file
diff --git a/tests/fail/src/meson.build b/tests/fail/src/meson.build
deleted file mode 100644
index 8b0fd4c..0000000
--- a/tests/fail/src/meson.build
+++ /dev/null
@@ -1,25 +0,0 @@
-fail_test_public_h = [
- 'tester.h',
-]
-
-fail_test_c = [
- 'tester.c',
-]
-
-fail_test_deps = [
- glib_dep,
-]
-
-fail_test_lib = shared_library(
- 'failtester',
- sources: fail_test_c,
- dependencies: fail_test_deps,
- install: false,
-)
-
-fail_test_dep = declare_dependency(
- link_with: fail_test_lib,
- include_directories: include_directories('.'),
- dependencies: fail_test_deps,
- sources: fail_test_public_h,
-) \ No newline at end of file
diff --git a/tests/meson.build b/tests/meson.build
index 0ea0a41..5a5a60f 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -33,5 +33,4 @@ subdir('bugs')
subdir('empty')
subdir('fail')
subdir('gobject')
-subdir('program')
-subdir('repro') \ No newline at end of file
+subdir('program') \ No newline at end of file
diff --git a/tests/program/meson.build b/tests/program/meson.build
index dc00692..c171ea1 100644
--- a/tests/program/meson.build
+++ b/tests/program/meson.build
@@ -1,2 +1 @@
-subdir('src')
subdir('docs') \ No newline at end of file
diff --git a/tests/program/src/meson.build b/tests/program/src/meson.build
deleted file mode 100644
index 02b8bbc..0000000
--- a/tests/program/src/meson.build
+++ /dev/null
@@ -1,10 +0,0 @@
-
-program_test_c = [
- 'test-program.c',
-]
-
-program_test_lib = executable(
- 'programtester',
- sources: program_test_c,
- install: false,
-) \ No newline at end of file
diff --git a/tests/repro/meson.build b/tests/repro/meson.build
index dc00692..c171ea1 100644
--- a/tests/repro/meson.build
+++ b/tests/repro/meson.build
@@ -1,2 +1 @@
-subdir('src')
subdir('docs') \ No newline at end of file
diff --git a/tests/repro/src/meson.build b/tests/repro/src/meson.build
deleted file mode 100644
index a3e12e3..0000000
--- a/tests/repro/src/meson.build
+++ /dev/null
@@ -1,25 +0,0 @@
-repro_test_public_h = [
- 'tester.h',
-]
-
-repro_test_c = [
- 'tester.c',
-]
-
-repro_test_deps = [
- glib_dep,
-]
-
-repro_test_lib = shared_library(
- 'reprotester',
- sources: repro_test_c,
- dependencies: repro_test_deps,
- install: false,
-)
-
-repro_test_dep = declare_dependency(
- link_with: repro_test_lib,
- include_directories: include_directories('.'),
- dependencies: repro_test_deps,
- sources: repro_test_public_h,
-) \ No newline at end of file