Make ExportLanguages a subtest of the ObjectLibrary test

It was a subtest of the RunCMake.ObjectLibrary test. However, we need
to test a build with ExternalProject after running CMake, which RunCMake tests
do not do.
This commit is contained in:
Stephen Kelly
2012-10-07 22:37:23 +02:00
parent 30ff6cf9e9
commit 310aef959b
7 changed files with 32 additions and 16 deletions
@@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 2.8)
project(ExportLanguages CXX)
add_library(ExportLanguagesA OBJECT a.cxx)
add_library(ExportLanguagesB STATIC a.c $<TARGET_OBJECTS:ExportLanguagesA>)
# Verify that object library languages are propagated.
export(TARGETS ExportLanguagesB NAMESPACE Exp FILE BExport.cmake)
include(ExternalProject)
ExternalProject_Add(ExportLanguagesTest
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ExportLanguagesTest"
BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/ExportLanguagesTest"
DOWNLOAD_COMMAND ""
INSTALL_COMMAND ""
)
add_dependencies(ExportLanguagesTest ExportLanguagesA ExportLanguagesB)
@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 2.8)
project(ExportLanguagesTest)
include(${CMAKE_CURRENT_BINARY_DIR}/../BExport.cmake)
get_property(configs TARGET ExpExportLanguagesB PROPERTY IMPORTED_CONFIGURATIONS)
foreach(c ${configs})
get_property(langs TARGET ExpExportLanguagesB PROPERTY IMPORTED_LINK_INTERFACE_LANGUAGES_${c})
list(FIND langs CXX pos)
if(${pos} LESS 0)
message(FATAL_ERROR "Target export does not list object library languages.")
endif()
endforeach()
+1
View File
@@ -0,0 +1 @@
int a(void) { return 0; }
@@ -0,0 +1 @@
extern "C" int acxx(void) { return 0; }