mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
002062b024
Requires shuffling the CPack code up before add_subdirectory(tools), but that's where the version settings are anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189615 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
498 B
CMake
17 lines
498 B
CMake
if (WIN32)
|
|
set(prop_file "Microsoft.Cpp.Win32.llvm.props")
|
|
|
|
# CPack will install a registry key in this format that we wish to reference.
|
|
set(REG_KEY "${CMAKE_PROJECT_NAME} ${CPACK_PACKAGE_VERSION}")
|
|
configure_file(${prop_file}.in ${prop_file})
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${prop_file}" DESTINATION tools/msbuild)
|
|
|
|
install(DIRECTORY .
|
|
DESTINATION tools/msbuild
|
|
FILES_MATCHING
|
|
PATTERN "*.targets"
|
|
PATTERN "*.bat"
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
endif()
|