mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
CMake: factor out a function that returns the expected directory for unit test
llvm-svn: 170539
This commit is contained in:
parent
7f3c62dead
commit
d4a38a4ec8
@ -155,14 +155,20 @@ macro(add_llvm_external_project name)
|
||||
endif()
|
||||
endmacro(add_llvm_external_project)
|
||||
|
||||
# Returns directory where unittest should reside.
|
||||
function(get_unittest_directory dir)
|
||||
if (CMAKE_BUILD_TYPE)
|
||||
set(result ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE})
|
||||
else()
|
||||
set(result ${CMAKE_CURRENT_BINARY_DIR})
|
||||
endif()
|
||||
set(${dir} ${result} PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
# Generic support for adding a unittest.
|
||||
function(add_unittest test_suite test_name)
|
||||
if (CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
|
||||
${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE})
|
||||
else()
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
endif()
|
||||
get_unittest_directory(OUTPUT_DIR)
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${OUTPUT_DIR})
|
||||
if( NOT LLVM_BUILD_TESTS )
|
||||
set(EXCLUDE_FROM_ALL ON)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user