This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -O http://wordpress.org/latest.zip | |
| unzip latest.zip | |
| mv wordpress site | |
| rm latest.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.8) | |
| project(Prog1) | |
| set(EXECUTABLE StoneAge) | |
| set(CMAKE_C_STANDARD 11) | |
| file(GLOB Prog1_sources *.c) | |
| file(GLOB raylib_sources raylib/src/*.c) | |
| file(GLOB raylib_external_sources raylib/src/external/*.c) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.8) | |
| project(Prog1) | |
| set(CMAKE_C_STANDARD 11) | |
| set(SOURCE_FILES | |
| sand.png | |
| main.c | |
| bottom_texture.c bottom_texture.h brown_textures.c brown_textures.h texture_generators.c texture_generators.h types.c types.h) | |
| set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -lglfw -lraylib -framework GLUT -framework OpenGL -framework Cocoa") |