Mercurial > public > algo-animator
view CMakeLists.txt @ 44:10af07920b40
change README to org
author | Dennis <dennis@denniscm.com> |
---|---|
date | Tue, 08 Aug 2023 19:02:40 +0000 |
parents | dae463bbf5ca |
children | f60144ebce23 |
line wrap: on
line source
cmake_minimum_required(VERSION 3.22) project(algo_animator) set(FREETYPE_DIR /usr/local/include/freetype2) include_directories(${FREETYPE_DIR}) add_executable(algo_animator src/main.c src/algorithms.c src/algorithms.h src/utils.c src/utils.h ) target_link_libraries(algo_animator glut GL GLU m freetype ) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/fonts DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/build)