diff options
author | Brad King <brad.king@kitware.com> | 2014-12-23 00:55:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-23 01:13:40 (GMT) |
commit | 07fc7b75ef981300e7d873091ee90083b18d1c4a (patch) | |
tree | c869f64c456c00ccfccf81de7b8baa0e0a081881 /Tests/CxxSubdirC | |
parent | fdbfcfdf0173c34845e495f4c0bd407faafc45b4 (diff) | |
download | CMake-07fc7b75ef981300e7d873091ee90083b18d1c4a.zip CMake-07fc7b75ef981300e7d873091ee90083b18d1c4a.tar.gz CMake-07fc7b75ef981300e7d873091ee90083b18d1c4a.tar.bz2 |
Tests: Test using objects from a language enabled in a subdirectory (#15325)
Add a test case that enables CXX in the top level and C in a subdirectory.
Create an executable in the top level that uses C objects compiled in the
subdirectory. Strictly speaking this is not defined behavior for all
language combinations, but happens to work in this case. Test this
behavior since projects might try to use it.
Diffstat (limited to 'Tests/CxxSubdirC')
-rw-r--r-- | Tests/CxxSubdirC/CMakeLists.txt | 4 | ||||
-rw-r--r-- | Tests/CxxSubdirC/Cdir/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/CxxSubdirC/Cdir/Cobj.c | 1 | ||||
-rw-r--r-- | Tests/CxxSubdirC/main.cxx | 2 |
4 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CxxSubdirC/CMakeLists.txt b/Tests/CxxSubdirC/CMakeLists.txt new file mode 100644 index 0000000..52474f8 --- /dev/null +++ b/Tests/CxxSubdirC/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.0) +project(CxxSubdirC CXX) +add_subdirectory(Cdir) +add_executable(CxxSubdirC main.cxx $<TARGET_OBJECTS:Cobj>) diff --git a/Tests/CxxSubdirC/Cdir/CMakeLists.txt b/Tests/CxxSubdirC/Cdir/CMakeLists.txt new file mode 100644 index 0000000..08a8757 --- /dev/null +++ b/Tests/CxxSubdirC/Cdir/CMakeLists.txt @@ -0,0 +1,2 @@ +enable_language(C) +add_library(Cobj OBJECT Cobj.c) diff --git a/Tests/CxxSubdirC/Cdir/Cobj.c b/Tests/CxxSubdirC/Cdir/Cobj.c new file mode 100644 index 0000000..75a0045 --- /dev/null +++ b/Tests/CxxSubdirC/Cdir/Cobj.c @@ -0,0 +1 @@ +int Cobj(void) { return 0; } diff --git a/Tests/CxxSubdirC/main.cxx b/Tests/CxxSubdirC/main.cxx new file mode 100644 index 0000000..049220f --- /dev/null +++ b/Tests/CxxSubdirC/main.cxx @@ -0,0 +1,2 @@ +extern "C" int Cobj(void); +int main() { return Cobj(); } |