Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ add_definitions(-DLOADER_VERSION_PATCH=${PROJECT_VERSION_PATCH})

file(WRITE "${CMAKE_BINARY_DIR}/VERSION" "${PROJECT_VERSION}")

string(TIMESTAMP CURRENT_YEAR "%Y")

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
Expand Down Expand Up @@ -341,7 +343,7 @@ else()
endif()
set(CPACK_PACKAGE_RELOCATABLE FALSE)
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "oneAPI Level Zero")
set(CPACK_PACKAGE_VENDOR "Intel")
set(CPACK_PACKAGE_VENDOR "Intel Corporation")

set(CPACK_PACKAGE_INSTALL_DIRECTORY ${CMAKE_INSTALL_PREFIX})
set(CPACK_PACKAGE_CONTACT "Intel Corporation")
Expand Down
5 changes: 4 additions & 1 deletion source/ZeLoaderVersion.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@

#define VER_PRODUCT_NAME_STR "oneAPI Level Zero Loader for Windows(R)"

#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2023 Intel Corporation"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2020-@CURRENT_YEAR@ Intel Corporation"

#define VER_COMPANY_NAME_STR "Intel Corporation"

1 VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand All @@ -18,6 +20,7 @@ BEGIN
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", VER_COMPANY_NAME_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
Expand Down
5 changes: 4 additions & 1 deletion source/layers/tracing/ZeTracingLayerVersion.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@

#define VER_PRODUCT_NAME_STR "oneAPI Level Zero API Tracing Layer for Windows(R)"

#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2020 Intel Corporation"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2020-@CURRENT_YEAR@ Intel Corporation"

#define VER_COMPANY_NAME_STR "Intel Corporation"

1 VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand All @@ -18,6 +20,7 @@ BEGIN
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", VER_COMPANY_NAME_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
Expand Down
5 changes: 4 additions & 1 deletion source/layers/validation/ZeValidationLayerVersion.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@

#define VER_PRODUCT_NAME_STR "oneAPI Level Zero Validation Layer for Windows(R)"

#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2020 Intel Corporation"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2020-@CURRENT_YEAR@ Intel Corporation"

#define VER_COMPANY_NAME_STR "Intel Corporation"

1 VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand All @@ -18,6 +20,7 @@ BEGIN
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", VER_COMPANY_NAME_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
Expand Down
Loading