summaryrefslogtreecommitdiffstats
path: root/lowercasing_test/src/grouping_test/hello-world-lib
diff options
context:
space:
mode:
Diffstat (limited to 'lowercasing_test/src/grouping_test/hello-world-lib')
-rw-r--r--lowercasing_test/src/grouping_test/hello-world-lib/.gitignore2
-rw-r--r--lowercasing_test/src/grouping_test/hello-world-lib/CMakeLists.txt6
-rw-r--r--lowercasing_test/src/grouping_test/hello-world-lib/hello-world.cpp9
-rw-r--r--lowercasing_test/src/grouping_test/hello-world-lib/hello-world.h9
4 files changed, 0 insertions, 26 deletions
diff --git a/lowercasing_test/src/grouping_test/hello-world-lib/.gitignore b/lowercasing_test/src/grouping_test/hello-world-lib/.gitignore
deleted file mode 100644
index 5dae353d999..00000000000
--- a/lowercasing_test/src/grouping_test/hello-world-lib/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-.depend
-Makefile
diff --git a/lowercasing_test/src/grouping_test/hello-world-lib/CMakeLists.txt b/lowercasing_test/src/grouping_test/hello-world-lib/CMakeLists.txt
deleted file mode 100644
index a6e6876f152..00000000000
--- a/lowercasing_test/src/grouping_test/hello-world-lib/CMakeLists.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_library(lowercasing_test_hello-world-lib STATIC
- SOURCES
- hello-world.cpp
- DEPENDS
-)
diff --git a/lowercasing_test/src/grouping_test/hello-world-lib/hello-world.cpp b/lowercasing_test/src/grouping_test/hello-world-lib/hello-world.cpp
deleted file mode 100644
index d280665ae7d..00000000000
--- a/lowercasing_test/src/grouping_test/hello-world-lib/hello-world.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include "hello-world.h"
-#include <stdio.h>
-
-void
-HelloWorld::print()
-{
- fprintf(stdout, "C++/lib/Hello World\n");
-}
diff --git a/lowercasing_test/src/grouping_test/hello-world-lib/hello-world.h b/lowercasing_test/src/grouping_test/hello-world-lib/hello-world.h
deleted file mode 100644
index 4bca4064da0..00000000000
--- a/lowercasing_test/src/grouping_test/hello-world-lib/hello-world.h
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#pragma once
-
-class HelloWorld
-{
-public:
- static void print();
-};
-