Skip to content

Commit

Permalink
Stop using CMake, we don't need it
Browse files Browse the repository at this point in the history
  • Loading branch information
krig committed Feb 10, 2016
1 parent a4d8e74 commit d659b19
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 85 deletions.
13 changes: 0 additions & 13 deletions CMakeLists.txt

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Expand Up @@ -22,7 +22,6 @@ Right now, not much.
* OpenGL 3.3
* SDL 2
* GLEW
* CMake

## map / chunk structure redesign

Expand Down
70 changes: 0 additions & 70 deletions build

This file was deleted.

2 changes: 1 addition & 1 deletion src/main.c
Expand Up @@ -448,7 +448,7 @@ void game_loop(int64_t dt)
}


int main(int argc, char* argv[])
int roam_main(int argc, char* argv[])
{
GLenum rc;

Expand Down
21 changes: 21 additions & 0 deletions src/roam_linux.c
@@ -0,0 +1,21 @@
// main source file for Linux
#include "stb.c"
#include "blocks.c"
#include "gen.c"
#include "geometry.c"
#include "map.c"
#include "math3d.c"
#include "noise.c"
#include "objfile.c"
#include "player.c"
#include "script.c"
#include "sky.c"
#include "stb.c"
#include "sys.c"
#include "u8.c"
#include "ui.c"
#include "main.c"

int main(int argc, char* argv[]) {
return roam_main(argc, argv);
}

0 comments on commit d659b19

Please sign in to comment.