Important README update. (0.17.3)
This commit is contained in:
parent
6d300ae024
commit
cfe145f08c
2 changed files with 3 additions and 8 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
project(fun VERSION 0.17.2 LANGUAGES C)
|
project(fun VERSION 0.17.3 LANGUAGES C)
|
||||||
|
|
||||||
set(CMAKE_C_STANDARD 11)
|
set(CMAKE_C_STANDARD 11)
|
||||||
set(CMAKE_C_STANDARD_REQUIRED ON)
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Fun is and will ever be 100% free under the terms of the [Apache-2.0-License](ht
|
||||||
|
|
||||||
- Dynamic and optionally statically typed
|
- Dynamic and optionally statically typed
|
||||||
- Type safety
|
- Type safety
|
||||||
- Written in C and Fun
|
- Written in C (C11) and Fun
|
||||||
- Internal libs are written with no_camel_case even when written in Fun, except class Names
|
- Internal libs are written with no_camel_case even when written in Fun, except class Names
|
||||||
- Only a minimal function set is written in C, and most other core functions and libraries are implemented in Fun
|
- Only a minimal function set is written in C, and most other core functions and libraries are implemented in Fun
|
||||||
|
|
||||||
|
|
@ -75,27 +75,22 @@ This section is a work in progress... Please excuse the lack of more information
|
||||||
|
|
||||||
A C compiler, a libc and [Git](https://git-scm.com/).
|
A C compiler, a libc and [Git](https://git-scm.com/).
|
||||||
|
|
||||||
Actually Fun requires both CMake and Make as build utils. You always can build Fun only using CMake. Make is just used as a wrapper around CMake.
|
|
||||||
|
|
||||||
#### FreeBSD
|
#### FreeBSD
|
||||||
|
|
||||||
- [CMake](https://cmake.org/)
|
- [CMake](https://cmake.org/)
|
||||||
- [Clang](https://clang.llvm.org/)
|
- [Clang](https://clang.llvm.org/)
|
||||||
- [GNU Make](https://www.gnu.org/software/make) (gmake)
|
|
||||||
|
|
||||||
#### Linux
|
#### Linux
|
||||||
|
|
||||||
- [CMake](https://cmake.org/)
|
- [CMake](https://cmake.org/)
|
||||||
- [GCC](https://gcc.gnu.org/) (Clang should work here too, not tested!)
|
- [GCC](https://gcc.gnu.org/) (Clang should work here too, not tested!)
|
||||||
- [GNU make](https://www.gnu.org/software/make) (make)
|
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
|
|
||||||
This requires Cygwin to be installed and configured. I will not cover this here.
|
This requires Cygwin to be installed and configured. I will not cover this here.
|
||||||
|
|
||||||
- [CMake](https://cmake.org/)
|
- [CMake](https://cmake.org/)
|
||||||
- [GNU make](https://www.gnu.org/software/make) (make)
|
- [Cygwin](https://cygwin.com/) using [GCC](https://gcc.gnu.org/)
|
||||||
- [MinGW](https://en.wikipedia.org/wiki/MinGW)
|
|
||||||
|
|
||||||
### Rules
|
### Rules
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue