This commit is contained in:
2024-03-10 16:30:51 +11:00
parent 2f39d31874
commit 0d891b4874
2 changed files with 6 additions and 5 deletions

View File

@@ -1,15 +1,15 @@
cmake_minimum_required(VERSION "3.5" FATAL_ERROR)
project(Lesson10 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 98)
find_package(SDL3 REQUIRED CONFIG)
find_package(OpenGL REQUIRED)
add_executable(Lesson10 Lesson10.cpp)
set_property(TARGET Lesson10 PROPERTY CXX_STANDARD 98)
target_link_libraries(Lesson10 SDL3::SDL3 OpenGL::GL)
target_compile_options(Lesson10 PRIVATE -Wall -Wextra -pedantic)
set_target_properties(Lesson10 PROPERTIES
CXX_STANDARD 98
WIN32_EXECUTABLE ON)
target_link_libraries(Lesson10 SDL3::SDL3 OpenGL::GL OpenGL::GLU)
target_compile_options(Lesson10 PRIVATE $<$<CXX_COMPILER_ID:GNU>:-Wall -Wextra -pedantic>)
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
get_property(SDL3_IMPORTED_LOCATION TARGET SDL3::SDL3 PROPERTY IMPORTED_LOCATION)

View File

@@ -8,6 +8,7 @@
#include <math.h> // Math Library Header File
#include <stdio.h> // Header File For Standard Input/Output
#include <stdlib.h>
#include <SDL.h>
#include <SDL_main.h>
#include <SDL_opengl.h> // Header File For The OpenGL32 Library