mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00

By design the benchmark project is not build as it relies on Google Benchmark that is retrieved using vcpkg. Vcpkg is now part of Visual Studio 2022, so building with VS 2022 works. One of the build steps of the CI pipeline build CharLS however with VS 2019 to ensure that VS 2019 still can be used. Enabled benchmark in the solution file for x86 and X64 would break VS 2019. ARM64 build are only support in VS 2022, so enabling that version doesn't break VS 2019.
21 lines
360 B
C++
21 lines
360 B
C++
// Copyright (c) Team CharLS.
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
module;
|
|
|
|
#define CHARLS_BUILD_AS_CPP_MODULE
|
|
|
|
#include <sal.h>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <system_error>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
export module charls;
|
|
|
|
#include "jpegls_decoder.hpp"
|
|
#include "jpegls_encoder.hpp"
|
|
#include "version.h"
|