cmake_minimum_required(VERSION 3.14) enable_language (C) set (win_platforms Windows CYGWIN) set (GENERATE_CONTENT [[ macro (CHECK_VALUE test_msg value expected) if (NOT "${value}" STREQUAL "${expected}") string (APPEND RunCMake_TEST_FAILED "${test_msg}: actual result:\n [${value}]\nbut expected:\n [${expected}]\n") endif() endmacro() ]]) add_executable (exec1 empty.c) add_library (shared1 SHARED empty.c) add_library (static1 STATIC empty.c) string (APPEND GENERATE_CONTENT "\ncheck_value (\"TARGET_FILE_PREFIX executable default\" \"$\" \"\") check_value (\"TARGET_FILE_PREFIX shared default\" \"$\" \"${CMAKE_SHARED_LIBRARY_PREFIX}\") check_value (\"TARGET_LINKER_FILE_PREFIX shared linker default\" \"$\" \"$,${win_platforms}>,${CMAKE_IMPORT_LIBRARY_PREFIX},${CMAKE_SHARED_LIBRARY_PREFIX}>\") check_value (\"TARGET_FILE_PREFIX static default\" \"$\" \"${CMAKE_STATIC_LIBRARY_PREFIX}\") check_value (\"TARGET_LINKER_FILE_PREFIX static linker default\" \"$\" \"${CMAKE_STATIC_LIBRARY_PREFIX}\")\n") add_executable (exec2 empty.c) set_property (TARGET exec2 PROPERTY PREFIX exec2_prefix) set_property (TARGET exec2 PROPERTY ENABLE_EXPORTS TRUE) set_property (TARGET exec2 PROPERTY IMPORT_PREFIX exec2_import_prefix) add_library (shared2 SHARED empty.c) set_property (TARGET shared2 PROPERTY PREFIX shared2_prefix) set_property (TARGET shared2 PROPERTY IMPORT_PREFIX shared2_import_prefix) add_library (static2 STATIC empty.c) set_property (TARGET static2 PROPERTY PREFIX static2_prefix) set_property (TARGET static2 PROPERTY IMPORT_PREFIX static2_import_prefix) string (APPEND GENERATE_CONTENT "\ncheck_value (\"TARGET_FILE_PREFIX executable custom\" \"$\" \"exec2_prefix\") check_value (\"TARGET_LINKER_FILE_PREFIX executable linker custom\" \"$\" \"$,${win_platforms}>,exec2_import_prefix,exec2_prefix>\") check_value (\"TARGET_FILE_PREFIX shared custom\" \"$\" \"shared2_prefix\") check_value (\"TARGET_LINKER_FILE_PREFIX shared linker custom\" \"$\" \"$,${win_platforms}>,shared2_import_prefix,shared2_prefix>\") check_value (\"TARGET_FILE_PREFIX static custom\" \"$\" \"static2_prefix\") check_value (\"TARGET_LINKER_FILE_PREFIX static linker custom\" \"$\" \"static2_prefix\")\n") file (GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/TARGET_FILE_PREFIX-generated.cmake" CONTENT "${GENERATE_CONTENT}")