charls/include/charls/charls.ixx
Victor Derks bb7185254c
Update benchmark project for code changes + enable ARM64 build (#323)
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.
2024-08-24 19:06:41 +02:00

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"