Commit 866b325 1 parent 11a4308 commit 866b325 Copy full SHA for 866b325
File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 5
5
.vs /
6
6
.idea
7
7
build * /
8
+ bazel- * /
9
+ MODULE.bazel.lock
8
10
cmake-build-debug /
9
11
TestResults /
10
12
vcpkg_installed /
Original file line number Diff line number Diff line change
1
+
2
+ # SPDX-FileCopyrightText: © 2025 Team CharLS
3
+ # SPDX-License-Identifier: BSD-3-Clause
4
+
5
+ """
6
+ This MODULE.bazel file defines the module and its dependencies for the CharLS project.
7
+ """
8
+
9
+ module (
10
+ name = "charls" ,
11
+ version = "3.0.0" ,
12
+ compatibility_level = 3 ,
13
+ bazel_compatibility = [">=7.5.0" ]
14
+ )
15
+
16
+ bazel_dep (name = "rules_cc" , version = "0.1.1" )
Original file line number Diff line number Diff line change
1
+ # SPDX-FileCopyrightText: © 2025 Team CharLS
2
+ # SPDX-License-Identifier: BSD-3-Clause
3
+
4
+ cc_library (
5
+ name = "charls" ,
6
+ srcs = ["jpeg_stream_reader.cpp" ],
7
+ hdrs = ["jpeg_stream_reader.hpp" ]
8
+ )
You can’t perform that action at this time.
0 commit comments