fixed wrong dependency in readme

pull/47/head
Ryzerth 2020-12-24 19:44:07 +01:00
rodzic 22541ae0f4
commit c887b96a77
3 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

@ -134,7 +134,6 @@ The modules built will be some of the following (Repeat the instructions above f
# Building on Linux / BSD
## Install dependencies
* cmake
* vcpkg
* fftw3
* glfw
* glew

BIN
test 100644

Plik binarny nie jest wyświetlany.

13
test.c 100644
Wyświetl plik

@ -0,0 +1,13 @@
#include <stdio.h>
int main() {
int mavariable = 420;
int* mon_pointer = &mavariable;
struct
printf("%p\n", *mon_pointer);
}