summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/railsys/libx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/railsys/libx')
-rw-r--r--tools/build/v2/test/railsys/libx/include/test_libx.h25
-rw-r--r--tools/build/v2/test/railsys/libx/jamroot.jam13
-rw-r--r--tools/build/v2/test/railsys/libx/src/jamfile.jam19
-rw-r--r--tools/build/v2/test/railsys/libx/src/test_libx.cpp15
4 files changed, 0 insertions, 72 deletions
diff --git a/tools/build/v2/test/railsys/libx/include/test_libx.h b/tools/build/v2/test/railsys/libx/include/test_libx.h
deleted file mode 100644
index fe573fc16f..0000000000
--- a/tools/build/v2/test/railsys/libx/include/test_libx.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2003 Institute of Transport,
-// Railway Construction and Operation,
-// University of Hanover, Germany
-//
-// Use, modification and distribution are subject to the
-// Boost Software License, Version 1.0. (See accompanying file
-// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-
-#ifdef _WIN32
-#ifdef LIBX_SOURCE
-__declspec(dllexport)
-#else
-__declspec(dllimport)
-#endif
-#endif
-class TestLibX
-{
-public:
-
- TestLibX();
-
- // Needed to suppress 'unused variable' warning
- // in some cases.
- void do_something() {}
-};
diff --git a/tools/build/v2/test/railsys/libx/jamroot.jam b/tools/build/v2/test/railsys/libx/jamroot.jam
deleted file mode 100644
index d09982dd1a..0000000000
--- a/tools/build/v2/test/railsys/libx/jamroot.jam
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright (c) 2002 Institute of Transport,
-# Railway Construction and Operation,
-# University of Hanover, Germany
-# Copyright (c) 2006 Jürgen Hunold
-#
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or copy at
-# http://www.boost.org/LICENSE_1_0.txt)
-
-# Tell that Qt3 should be used. QTDIR will give installation prefix.
-using qt3 ;
-
-
diff --git a/tools/build/v2/test/railsys/libx/src/jamfile.jam b/tools/build/v2/test/railsys/libx/src/jamfile.jam
deleted file mode 100644
index 639e0cc90b..0000000000
--- a/tools/build/v2/test/railsys/libx/src/jamfile.jam
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright (c) 2003 Institute of Transport,
-# Railway Construction and Operation,
-# University of Hanover, Germany
-#
-# Copyright (c) 2006 Jürgen Hunold
-#
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or copy at
-# http://www.boost.org/LICENSE_1_0.txt)
-
-project libx
- : requirements
- <include>../include
- : usage-requirements
- <include>../include
- ;
-
-
-lib libx : test_libx.cpp ;
diff --git a/tools/build/v2/test/railsys/libx/src/test_libx.cpp b/tools/build/v2/test/railsys/libx/src/test_libx.cpp
deleted file mode 100644
index be1fbc27f7..0000000000
--- a/tools/build/v2/test/railsys/libx/src/test_libx.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright (c) 2003 Institute of Transport,
-// Railway Construction and Operation,
-// University of Hanover, Germany
-//
-// Use, modification and distribution are subject to the
-// Boost Software License, Version 1.0. (See accompanying file
-// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-
-
-#define LIBX_SOURCE
-#include <test_libx.h>
-
-TestLibX::TestLibX()
-{
-}