commit 9800cfd29f8c613baded5688ca01908051efa1ed
parent 299427aac173c176022eb556710a11e1427cc9a3
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Thu, 11 Jun 2015 18:48:41 +0200
Only linking against GD for now
Diffstat:
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -1,12 +1,8 @@
cmake_minimum_required (VERSION 2.6)
project (ansilove C)
-find_library(LIB_ZLIB NAMES z REQUIRED)
-find_library(LIB_JPEG NAMES jpeg REQUIRED)
-find_library(LIB_PNG NAMES png REQUIRED)
-find_library(LIB_FREETYPE freetype REQUIRED)
find_library(LIB_GD NAMES gd REQUIRED)
add_executable(ansilove src/main.c src/albinfonts.c src/ansilove.c src/explode.c src/filesize.c src/strtolower.c src/substr.c)
-target_link_libraries(ansilove ${LIB_ZLIB} ${LIB_JPEG} ${LIB_PNG} ${LIB_FREETYPE} ${LIB_GD})
+target_link_libraries(ansilove ${LIB_GD})
diff --git a/README.md b/README.md
@@ -1,6 +1,6 @@
# AnsiLove/C
-This is a complete rewrite of [AnsiLove/PHP](http://ansilove.sourceforge.net) in the C programming language. It converts ANSi and artscene related file formats into [PNG images](http://cl.ly/1D0o1M2t2Y190v33462F/o). Unlike the PHP variant, AnsiLove/C is intended as UNIX command line tool you install preferably to `/usr/bin`. The project is considered as stable, current version is `2.1.3`.
+This is a complete rewrite of [AnsiLove/PHP](http://ansilove.sourceforge.net) in the C programming language. It converts ANSi and artscene related file formats into [PNG images](http://cl.ly/1D0o1M2t2Y190v33462F/o). Unlike the PHP variant, AnsiLove/C is intended as UNIX command line tool you install preferably to `/usr/bin`. The project is considered as stable, current version is `2.2.0`.
# Specs