tool_version.cc (406B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 #include "tools/tool_version.h" 7 8 #ifdef JPEGXL_VERSION_FROM_GIT 9 #include "tool_version_git.h" 10 #endif 11 12 namespace jpegxl { 13 namespace tools { 14 15 const char* kJpegxlVersion = JPEGXL_VERSION; 16 17 } // namespace tools 18 } // namespace jpegxl