https://github.com/ssloy/repdvis
https://github.com/ssloy/repdvis
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ssloy/repdvis
- Owner: ssloy
- Created: 2018-12-13T21:45:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-11T15:16:08.000Z (over 7 years ago)
- Last Synced: 2025-11-22T04:03:47.897Z (7 months ago)
- Language: C
- Size: 3.78 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# compilation
```sh
git clone --recurse-submodules https://github.com/ssloy/repdvis.git
cd repdvis
mkdir build
cd build
cmake ..
make
```
# Attention, à la FST le cmake est trop ancien ; il faut modifier le fichier lib/glfw/CMakeLists.txt :
```
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4141629..09ffb80 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,5 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 2.8)
+cmake_policy(SET CMP0022 NEW)
project(GLFW C)
```