mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
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:
@@ -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()
|
||||
@@ -0,0 +1 @@
|
||||
int a(void) { return 0; }
|
||||
@@ -0,0 +1 @@
|
||||
extern "C" int acxx(void) { return 0; }
|
||||
Reference in New Issue
Block a user