diff options
| author | raysan5 <[email protected]> | 2016-11-16 19:10:03 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2016-11-16 19:10:03 +0100 |
| commit | 41e49c5a6e8b9816c7aae4a9fddecdf5d6b91a7b (patch) | |
| tree | 944d2ed7f2b12df0e3981dd0caa1f15530ab203a /src/CMakeLists.txt | |
| parent | 5d46c27cd56fe482b80132fc3d75e452b1c0f87f (diff) | |
| download | raylib-41e49c5a6e8b9816c7aae4a9fddecdf5d6b91a7b.tar.gz raylib-41e49c5a6e8b9816c7aae4a9fddecdf5d6b91a7b.zip | |
Remove CMakeList
Working on an updated version...
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt deleted file mode 100644 index c094ad96..00000000 --- a/src/CMakeLists.txt +++ /dev/null @@ -1,32 +0,0 @@ -cmake_minimum_required (VERSION 3.0) -project (raylib) -SET(PLATFORM_TO_USE "PLATFORM_DESKTOP" CACHE STRING "Platform to compile for") -SET_PROPERTY(CACHE PLATFORM_TO_USE PROPERTY STRINGS PLATFORM_DESKTOP PLATFORM_RPI PLATFORM_WEB) - -set(CMAKE_C_FLAGS "-O1 -Wall -std=gnu99 -fgnu89-inline -Wno-missing-braces") - -IF(${PLATFORM_TO_USE} MATCHES "PLATFORM_DESKTOP") - - add_definitions(-DPLATFORM_DESKTOP, -DGRAPHICS_API_OPENGL_33) - include_directories("." "external/" "external/openal_soft/include" "external/glfw3/include") - -ENDIF() - -IF(${PLATFORM_TO_USE} MATCHES "PLATFORM_RPI") - - add_definitions(-DPLATFORM_RPI, -GRAPHICS_API_OPENGL_ES2) - include_directories("." "external/" "/opt/vc/include" "/opt/vc/include/interface/vmcs_host/linux" "/opt/vc/include/interface/vcos/pthreads") - -ENDIF() - -IF(${PLATFORM_TO_USE} MATCHES "PLATFORM_WEB") - - add_definitions(-DPLATFORM_WEB, -GRAPHICS_API_OPENGL_ES2) - include_directories("." "external/" "external/openal_soft/include" "external/glfw3/include") - -ENDIF() - - -file(GLOB SOURCES "*.c" "external/*.c") -add_library(raylib STATIC ${SOURCES}) -install(TARGETS raylib DESTINATION ../lib/)
\ No newline at end of file |
