Created
November 9, 2019 18:02
-
-
Save BalintCsala/906f025a88c95c7c017cf784165739d4 to your computer and use it in GitHub Desktop.
This file contains 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.12) | |
project(mertanihely C) | |
set(CMAKE_C_STANDARD 99) | |
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) | |
find_package(SDL2 REQUIRED) | |
find_package(SDL2_image REQUIRED) | |
find_package(SDL2_gfx REQUIRED) | |
find_package(SDL2_ttf REQUIRED) | |
include_directories(${SDL2_INCLUDE_DIRS}) | |
add_executable(mertanihely main.c) | |
target_link_libraries(mertanihely ${SDL2_LIBRARY} ${SDL2_IMAGE_LIBRARIES} ${SDL2_GFX_LIBRARY} ${SDL2_TTF_LIBRARY}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment