[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
- To: allegro-developers@xxxxxxxxxx
- Subject: [AD] new patch
- From: Rm Beer <rmbeer2@xxxxxxxxxx>
- Date: Mon, 23 May 2016 22:48:06 -0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=huSAwBG5C67HeyUvuSSFODMyaTM9GMoXxnmtEFgQulA=; b=rltP35zq3LCCAtsOH9csmQjKIQ6tDVA9q/aPI4Wjo9yblZFEiQZF92ynnPXNntYOZI u2znjtq81kAyMdwp8EupzGGNXtfZAvJ2mYBT575P+VUMWj4mj7XS+W46jAQRC//OUDA1 1nG9Lvy8NTXxvN9bBsadbAdUbNqeP6YKPNmc7KnUGeeIZ28HXc+TzeixwCZzxKeqgDAy acfpJTmeR0uWENw/w3LlA+9h4zeWQ1XVAVrGrl/7T1idUZZ1/fN85PN7qLZPh7eCZU6x p/kJW8E3hkMP8/AiVpPLntgucM2c4dXUR5X9Zt+nbjxTRiUUm9vs3+bL6+Yv62++woNt 8qmw==
The new path for fix library link. Where in my machine not compiling.
From 806e91fd9bd360d55fa8daaefe8345250b050e32 Mon Sep 17 00:00:00 2001
From: RmBeer <rmbeer2@xxxxxxxxxx>
Date: Mon, 23 May 2016 22:38:36 -0300
Subject: [PATCH] Fix library and add readme
---
README.txt | 3 +++
tests/CMakeLists.txt | 4 ++++
2 files changed, 7 insertions(+)
diff --git a/README.txt b/README.txt
index 32dfe53..a63d9e0 100644
--- a/README.txt
+++ b/README.txt
@@ -131,6 +131,9 @@ These are the dependencies required for the addons:
- PhysicsFS, provides access to archives, e.g. .zip files.
Home page: <http://icculus.org/physfs/>
+- ZLib, for compress files with PhysicsFS.
+ Home page: <http://www.zlib.net/>
+
On Windows it may be a pain to place all these libraries such that they can be
found. Please see the README_cmake.txt section on the "deps subdirectory"
when the time comes.
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 0e4b6ef..8317848 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -34,6 +34,8 @@ if(WANT_MONOLITH)
test_driver
LIBS
${ALLEGRO_MONOLITH_LINK_WITH}
+ -lbz2
+ -lfreetype
)
else(WANT_MONOLITH)
add_our_executable(
@@ -47,6 +49,8 @@ else(WANT_MONOLITH)
${TTF_LINK_WITH}
${PRIMITIVES_LINK_WITH}
${SHADER_LINK_WITH}
+ -lbz2
+ -lfreetype
)
endif(WANT_MONOLITH)
--
2.8.2