Skip to content

Commit 34c4ee7

Browse files
committed
Add source code for RMV 1.3 release.
1 parent e99849f commit 34c4ee7

29 files changed

+615
-189
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,5 @@ add_custom_command(TARGET Documentation POST_BUILD
163163
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RELEASE_DOCS_IN_ROOT} ${BUILD_ROOT}/.
164164
COMMAND ${CMAKE_COMMAND} -E echo "copying Samples to output directory"
165165
COMMAND ${CMAKE_COMMAND} -E make_directory ${BUILD_ROOT}/samples
166-
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_SOURCE_DIR}/samples/sampleTrace.rmv ${BUILD_ROOT}/samples/.
166+
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_SOURCE_DIR}/samples/sampleTrace.rmv ${BUILD_ROOT}/samples/sample_trace.rmv
167167
)

build/dependency_map.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#!/usr/bin/python
2-
# Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved.
1+
#! python3
2+
# Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved.
33

44
import sys
55

@@ -15,7 +15,6 @@
1515
# Define a set of dependencies that exist as separate git projects.
1616
# each git dependency has a desired directory where it will be cloned - along with a commit to checkout
1717
git_mapping = {
18-
git_root + "QtCommon" : ["../external/qt_common", "v3.7.0"],
18+
git_root + "QtCommon" : ["../external/qt_common", "v3.8.0"],
1919
git_root + "UpdateCheckAPI" : ["../external/update_check_api", "v2.0.1"],
2020
}
21-

build/fetch_dependencies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def update_git_dependencies(git_mapping, update):
6565
return False
6666
elif update == True:
6767
# directory exists and update requested - get latest from git
68-
log_print("Directory %s exists, using 'git fetch --tags' to get latest from %s" % (path, git_repo))
69-
p = subprocess.Popen((["git", "fetch", "--tags"]), cwd=path, stderr=subprocess.STDOUT)
68+
log_print("Directory %s exists, using 'git fetch --tags -f' to get latest from %s" % (path, git_repo))
69+
p = subprocess.Popen((["git", "fetch", "--tags", "-f"]), cwd=path, stderr=subprocess.STDOUT)
7070
p.wait()
7171
if(p.returncode == 0):
7272
do_checkout = True

build/qt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[Paths]
2-
Prefix = qt
2+
Prefix = ./

source/backend/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.5.1)
1+
cmake_minimum_required(VERSION 3.10)
22
project(RmvBackend)
33

44
set(CMAKE_INCLUDE_CURRENT_DIR ON)

0 commit comments

Comments
 (0)