File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.19)
22
33set (CURRENT_PROJECT "OpenSimplex2Interface" )
44
5- option (OPENSIMPLEX_C "Enable build old C implementation instead Rust " OFF )
6- option (OPENSIMPLEX_RUST "Enable build old C implementation instead Rust" ON )
5+ option (OPENSIMPLEX_C "Enable/Disable build of the old C implementation" OFF )
6+ option (OPENSIMPLEX_RUST "Enable/Disable build of the main Rust implementation " ON )
77
88
99add_library (${CURRENT_PROJECT} INTERFACE )
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ You can enable both backends simultaneously if needed.
7070To override the default options, use:
7171
7272``` cmake
73- option(OPENSIMPLEX_C "Enable build old C implementation instead Rust" ON )
74- option(OPENSIMPLEX_RUST "Enable build old C implementation instead Rust" ON)
73+ option(OPENSIMPLEX_C "Enable/Disable build of the old C implementation" OFF )
74+ option(OPENSIMPLEX_RUST "Enable/Disable build of the main Rust implementation " ON)
7575```
7676
7777### Including in C/C++ Projects
Original file line number Diff line number Diff line change 11#ifndef OPENSIMPLEX2_H
2-
2+ #define OPENSIMPLEX2_H
33
44#ifdef __cplusplus
55extern "C" {
You can’t perform that action at this time.
0 commit comments