fixed wrong dependency in readme

This commit is contained in:
Ryzerth 2020-12-24 19:44:07 +01:00
parent 22541ae0f4
commit c887b96a77
3 changed files with 13 additions and 1 deletions

View File

@ -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 Normal file

Binary file not shown.

13
test.c Normal file
View File

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