Skip to content

Commit 20df9e2

Browse files
authored
Merge branch 'main' into otore/animation_name
2 parents ca15df4 + 9ece5b5 commit 20df9e2

File tree

233 files changed

+4251
-6983
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+4251
-6983
lines changed

.github/workflows/macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
build:
77
env:
8-
PACKAGE: gz-common5
8+
PACKAGE: gz-common6
99
runs-on: macos-latest
1010
steps:
1111
- uses: actions/checkout@v2

BUILD.bazel

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exports_files(["LICENSE"])
1919

2020
PROJECT_NAME = "gz-common"
2121

22-
PROJECT_MAJOR = 5
22+
PROJECT_MAJOR = 6
2323

2424
PROJECT_MINOR = 0
2525

@@ -84,9 +84,9 @@ cc_library(
8484
)
8585

8686
cc_binary(
87-
name = "libgz-common5.so",
87+
name = "libgz-common6.so",
8888
includes = ["include"],
89-
linkopts = ["-Wl,-soname,libgz-common5.so"],
89+
linkopts = ["-Wl,-soname,libgz-common6.so"],
9090
linkshared = True,
9191
deps = [":gz_common"],
9292
)
@@ -99,7 +99,7 @@ test_srcs = glob(
9999
[cc_test(
100100
name = src.replace("/", "_").replace(".cc", "").replace("src_", ""),
101101
srcs = [src],
102-
data = [":libgz-common5.so"],
102+
data = [":libgz-common6.so"],
103103
deps = [
104104
":gz_common",
105105
GZ_ROOT + "gz_bazel:utilities",

CMakeLists.txt

+4-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
33
#============================================================================
44
# Initialize the project
55
#============================================================================
6-
project(gz-common5 VERSION 5.0.0)
6+
project(gz-common6 VERSION 6.0.0)
77
set(GZ_COMMON_VER ${PROJECT_VERSION_MAJOR})
88

99
#============================================================================
@@ -18,7 +18,7 @@ set(GZ_CMAKE_VER ${gz-cmake3_VERSION_MAJOR})
1818
set(CMAKE_CXX_STANDARD 17)
1919
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2020

21-
gz_configure_project(VERSION_SUFFIX pre1)
21+
gz_configure_project(VERSION_SUFFIX)
2222

2323
#============================================================================
2424
# Set project-specific options
@@ -67,11 +67,6 @@ else()
6767
message(STATUS "Skipping search for tinyxml2 and using an internal version\n")
6868
endif()
6969

70-
#--------------------------------------
71-
# Find libdl
72-
gz_find_package(
73-
DL REQUIRED PRIVATE PRETTY libdl PURPOSE "Required for plugins")
74-
7570
#--------------------------------------
7671
# Find dependencies that we ignore for Visual Studio
7772
if(NOT MSVC)
@@ -109,6 +104,7 @@ gz_find_package(SWSCALE REQUIRED_BY av PRETTY libswscale)
109104
#------------------------------------
110105
# Find avdevice
111106
gz_find_package(AVDEVICE VERSION 56.4.100 REQUIRED_BY av PRETTY libavdevice)
107+
set(HAVE_AVDEVICE ${AVDEVICE_FOUND})
112108

113109
#------------------------------------
114110
# Find avformat
@@ -126,7 +122,6 @@ gz_find_package(AVUTIL REQUIRED_BY av PRETTY libavutil)
126122
# Find assimp
127123
gz_find_package(GzAssimp REQUIRED_BY graphics PRETTY assimp)
128124

129-
130125
message(STATUS "-------------------------------------------\n")
131126

132127

@@ -137,7 +132,7 @@ configure_file("${PROJECT_SOURCE_DIR}/cppcheck.suppress.in"
137132
${PROJECT_BINARY_DIR}/cppcheck.suppress)
138133

139134
gz_configure_build(QUIT_IF_BUILD_ERRORS
140-
COMPONENTS av events geospatial graphics profiler testing)
135+
COMPONENTS av events geospatial graphics io profiler testing)
141136

142137
#============================================================================
143138
# Create package information

0 commit comments

Comments
 (0)