forked from OSchip/llvm-project
Move these CMake projects into the Tests folder on IDEs like Visual Studio rather than leave it in the root directory. NFC.
llvm-svn: 317414
This commit is contained in:
parent
692c8efe30
commit
cecf7145e9
|
@ -1,6 +1,7 @@
|
|||
set(LLVM_LINK_COMPONENTS Support)
|
||||
|
||||
add_library(DynamicLibraryLib STATIC ExportedFuncs.cxx)
|
||||
set_target_properties(DynamicLibraryLib PROPERTIES FOLDER "Tests")
|
||||
|
||||
add_llvm_unittest(DynamicLibraryTests DynamicLibraryTest.cpp)
|
||||
target_link_libraries(DynamicLibraryTests DynamicLibraryLib)
|
||||
|
@ -8,6 +9,7 @@ export_executable_symbols(DynamicLibraryTests)
|
|||
|
||||
function(dynlib_add_module NAME)
|
||||
add_library(${NAME} SHARED PipSqueak.cxx)
|
||||
set_target_properties(${NAME} PROPERTIES FOLDER "Tests")
|
||||
|
||||
set_output_directory(${NAME}
|
||||
BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}
|
||||
|
|
Loading…
Reference in New Issue