From 5f1bf85f84991ea3e5973ddb904b5b0419303d89 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 25 Jul 2023 14:43:29 -0400 Subject: Tests/RunCMake/property_init: test 'with_artifact' properties --- Tests/RunCMake/property_init/RunCMakeTest.cmake | 1 + .../RunCMake/property_init/TargetsWithArtifact.cmake | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Tests/RunCMake/property_init/TargetsWithArtifact.cmake diff --git a/Tests/RunCMake/property_init/RunCMakeTest.cmake b/Tests/RunCMake/property_init/RunCMakeTest.cmake index 214f279..791d719 100644 --- a/Tests/RunCMake/property_init/RunCMakeTest.cmake +++ b/Tests/RunCMake/property_init/RunCMakeTest.cmake @@ -11,3 +11,4 @@ run_cmake(NonImportedTarget) run_cmake(NormalTarget) run_cmake(PICTargets) run_cmake(SharedLibrary) +run_cmake(TargetsWithArtifact) diff --git a/Tests/RunCMake/property_init/TargetsWithArtifact.cmake b/Tests/RunCMake/property_init/TargetsWithArtifact.cmake new file mode 100644 index 0000000..0c19ea3 --- /dev/null +++ b/Tests/RunCMake/property_init/TargetsWithArtifact.cmake @@ -0,0 +1,19 @@ +set(dir "${CMAKE_CURRENT_BINARY_DIR}") + +per_config(properties + # property expected alias + # Compilation properties + "INTERPROCEDURAL_OPTIMIZATION_" "OFF" "" + + # Output location properties + "ARCHIVE_OUTPUT_DIRECTORY_" "${dir}" "" + "COMPILE_PDB_OUTPUT_DIRECTORY_" "${dir}" "" + "LIBRARY_OUTPUT_DIRECTORY_" "${dir}" "" + "PDB_OUTPUT_DIRECTORY_" "${dir}" "" + "RUNTIME_OUTPUT_DIRECTORY_" "${dir}" "" + ) + +prepare_target_types(with_artifact + EXECUTABLE MODULE SHARED STATIC + IMPORTED_EXECUTABLE IMPORTED_MODULE IMPORTED_SHARED IMPORTED_STATIC) +run_property_tests(with_artifact properties) -- cgit v0.12