Skip to content

Commit

Permalink
Update source code for RMV v1.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosier committed Oct 3, 2024
1 parent 3f1cca7 commit 5c8a29a
Show file tree
Hide file tree
Showing 84 changed files with 1,836 additions and 901 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ project(RMV)

# Define version information
set(RMV_MAJOR_VERSION 1)
set(RMV_MINOR_VERSION 10)
set(RMV_MINOR_VERSION 11)
if (NOT RMV_BUGFIX_NUMBER)
set(RMV_BUGFIX_NUMBER 0)
endif ()
Expand Down
8 changes: 4 additions & 4 deletions build/dependency_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
# Define a set of dependencies that exist as separate git projects.
# each git dependency has a desired directory where it will be cloned - along with a commit to checkout
git_mapping = {
github_tools + "qt_common" : ["../external/qt_common", "v4.0.0", True],
github_tools + "update_check_api" : ["../external/update_check_api", "v2.1.1", True],
github_tools + "system_info_utils" : ["../external/system_info_utils", "88a338a01949f8d8bad60a30b78b65300fd13a9f", False],
github_root + "GPUOpen-Drivers/libamdrdf" : ["../external/rdf", "v1.1.2", True],
github_tools + "qt_common" : ["../external/qt_common", "v4.1.0", True],
github_tools + "update_check_api" : ["../external/update_check_api", "v2.1.1", True],
github_tools + "system_info_utils" : ["../external/system_info_utils", "v2.0", True],
github_root + "GPUOpen-Drivers/libamdrdf" : ["../external/rdf", "v1.4.0", True],
}

1 change: 1 addition & 0 deletions source/assets/PullDownOff_Gray.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/PullDownOn_Gray.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 76 additions & 0 deletions source/assets/amd_logo_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/arrow_gray_left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/arrow_gray_right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/checkbox_off.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/checkbox_off_gray.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/checkbox_on.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions source/assets/checkbox_on_gray.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions source/assets/third_party/ionicons/warning_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion source/backend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
include_directories(AFTER ../backend ../parser ../../external/rdf/rdf/inc ../third_party)

add_definitions(-DSYSTEM_INFO_ENABLE_RDF)
add_definitions(-DDRIVER_OVERRIDES_ENABLE_RDF)
add_definitions(-DRDF_CXX_BINDINGS)

# List of all source files. It may be possible to have the build process call cmake to update the makefiles
Expand Down Expand Up @@ -82,7 +83,6 @@ set( LINUX_SOURCES
"rmt_include_pevents.cpp"
)


# specify output library name
IF(WIN32)
add_library(${PROJECT_NAME} ${SOURCES})
Expand Down
Loading

0 comments on commit 5c8a29a

Please sign in to comment.