Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoLassmann committed Oct 9, 2023
1 parent 8e1179c commit 6308d71
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.18)

project(agp LANGUAGES C VERSION "1.0.0")
project(pml_system LANGUAGES C VERSION "1.0.0")

set (CMAKE_C_STANDARD 11)

Expand Down
12 changes: 5 additions & 7 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@

find_package(raylib 3.0 REQUIRED)
if(NOT raylib)
message(FATAL_ERROR "library.a not found!")
endif()


# if(NOT raylib)
# message(FATAL_ERROR "raylib not found!")
# endif()


# include_directories("${CMAKE_SOURCE_DIR}/raylib-4.5.0_macos/include")
add_executable(alife
add_executable(pml_system
main.c
grid.c
)

target_link_libraries(alife
target_link_libraries(pml_system
PRIVATE
raylib
tld-dev
Expand Down
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ int main(void)
{
// Initialization
//--------------------------------------------------------------------------------------
const int screenWidth = 500;
const int screenHeight = 540;
const int screenWidth = 1400;
const int screenHeight = 790;
int paused = 0;
/* float ball_size = 2.0; */
grid* g = NULL;
Expand Down

0 comments on commit 6308d71

Please sign in to comment.