Changed Project name, added readme.txt, default sqlite3 to false
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6305 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 0c801b39541bc6024455a0a07b35c169ff0b50ba Former-commit-id: edef07581f4e73b59f163ff690880307ca0a4b4c
This commit is contained in:
parent
9c4c77b0eb
commit
03ef5a71bf
2 changed files with 25 additions and 3 deletions
|
@ -27,7 +27,7 @@
|
|||
# (hashtag) starts a comment
|
||||
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
|
||||
|
||||
project(3rdParty-devel)
|
||||
project(3rdParty-2.2)
|
||||
|
||||
include(ExternalProject)
|
||||
include(CMakeDependentOption)
|
||||
|
@ -81,7 +81,7 @@ option(OPTION_VORBIS "Download and Build libvorbis" true)
|
|||
option(OPTION_EXPAT "Download and Build Expat" true)
|
||||
option(OPTION_ZLIB "Download and Build zlib" true)
|
||||
option(OPTION_PNG "Download and Build libpng" true)
|
||||
option(OPTION_SQLITE3 "Download and Build sqlite3" true)
|
||||
option(OPTION_SQLITE3 "Download and Build sqlite3" false)
|
||||
option(OPTION_FREETYPE "Download and Build FreeType" true)
|
||||
option(OPTION_CURL "Download and Build curl" true)
|
||||
option(OPTION_OSG "Download and Build OpenSceneGraph" true)
|
||||
|
@ -407,7 +407,7 @@ endif(OPTION_OSG)
|
|||
#add_subdirectory(src)
|
||||
|
||||
# no-output target, for having some files available in IDEs.
|
||||
set(DOCSOURCES COPYING LICENSE)
|
||||
set(DOCSOURCES COPYING LICENSE readme.txt)
|
||||
|
||||
add_custom_target(rootdoc SOURCES ${DOCSOURCES})
|
||||
|
||||
|
|
22
packaging/3rdParty-devel/readme.txt
Normal file
22
packaging/3rdParty-devel/readme.txt
Normal file
|
@ -0,0 +1,22 @@
|
|||
Building the dependencies for Speed-Dreams makes use of CMake's ExternalProject
|
||||
module. The source for each is downloaded from each project's site, patched if
|
||||
necessary, and built. This can take considerable time and accesses several
|
||||
different sites. See the CMakeLists.txt for the exact sites.(search for URL).
|
||||
|
||||
=============================================================================
|
||||
Windows
|
||||
As of version 2.2, this will download approximately 30MB of source files.
|
||||
You will need more than 1GB of free disk space for the build.
|
||||
|
||||
Prerequisites:
|
||||
DirectX sDK (June 2010) - needed by SDL and possibly OpenAL
|
||||
http://www.microsoft.com/en-us/download/details.aspx?id=6812
|
||||
|
||||
=============================================================================
|
||||
OS X
|
||||
TODO
|
||||
|
||||
=============================================================================
|
||||
Linux
|
||||
TODO
|
||||
|
Loading…
Reference in a new issue