mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 23:23:59 -06:00

Source files are checked using a small utility in src/build-utils This is done to prevent bugs in build and localization caused by weird non-UTF-8 encodings interpreted by MSVC in terms of local codepages rather than UTF-8.
9 lines
131 B
CMake
9 lines
131 B
CMake
project(semver)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
add_library(semver STATIC
|
|
semver.c
|
|
semver.h
|
|
)
|
|
|
|
encoding_check(semver)
|