Commit graph

56 commits

Author SHA1 Message Date
xavi92
cad91d2ead customthirdparty.cmake: Add missing libraries
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9595 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 90f49158d88f4009c7f5d0c79cfae7fb643a8cde
Former-commit-id: b01685f84ecbe3c9e1d657d156b1cb023e1eb947
2024-10-27 08:01:58 +00:00
xavi92
21807b8820 cmake: Remove SD_FIND_CUSTOM_3RDPARTY
This macro, along with _FIND_3RDPARTY_DEPENDENCY and
_FIND_3RDPARTY_DEPENDENCIES, was meant to tell find_package() and
friends about non-standard paths to find libraries when building for
Windows.

However, the same effect can be achieved via the standard CMake
variables CMAKE_PREFIX_PATH [1] and CMAKE_FIND_ROOT_PATH [2].

If cross-compiling, CMAKE_FIND_ROOT_PATH must be assigned when
configuring the project. This means the project must now be configured
with:

cmake -B <build-dir> -DCMAKE_FIND_ROOT_PATH=<root-dir>/3rdParty ...

[1]: https://cmake.org/cmake/help/latest/variable/CMAKE_PREFIX_PATH.html
[2]: https://cmake.org/cmake/help/latest/variable/CMAKE_FIND_ROOT_PATH.html


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9588 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9a28c7ff755e57080c1f6075dc9b7585146681b9
Former-commit-id: b406ba92a1955da3523eff392606d04d752bfdd0
2024-10-27 07:57:27 +00:00
xavi92
2004f4ba0c cmake: Rely on CURL::libcurl instead of CURL_LIBRARY
When calling find_package(CURL), different files might be inspected:

- $CMAKE_PREFIX/Modules/FindCURL.cmake
- 3rdParty/lib/cmake/CURL/CURLConfig.cmake

Which file is selected is decided by CMake depending on the context.
Unfortunately, whereas the former defines CURL_LIBRARY, the latter
does not.

However, both define the CURL::libcurl target, from which the library
location can be retrieved with get_property() so as to achieve the
same effect.

Fixing this also makes CURL_NO_CURL_CMAKE redundant.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9582 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 470e785d15589e41bf6f5d1b3c42318bb5ef645e
Former-commit-id: 5f8c279fc814833acdb26ade8979f67950033a8b
2024-10-27 07:54:00 +00:00
xavi92
4681971d6d Remove svn:keywords property from the repository
These properties are not transmitted with git-svn(1) [1], which might
then cause failed patches when modifying lines close to these
properties.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9554 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6ed21e1fe12d01a370842418c35722c75117a30a
Former-commit-id: 8ecd21b7c0211cd000b10b3f0032980f63c06398
2024-10-02 15:30:18 +00:00
xavi92
014f82c37c Fix trailing whitespaces and ending newlines
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9552 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f126eada2ef5b97c10fbb59d74901bcc03303a19
Former-commit-id: df90a174acb9bc1810f0f24cfc186ff2bc36d420
2024-09-30 05:23:49 +00:00
xavi92
0e7a45d2be Remove $Id$
This SVN-specific keyword [1] did not expand as expected on Git
repositories migrated from SVN via git-svn(1) [2]. Because of this,
applying patches with modifications would sometimes fail because, even
if these lines were not modified, they could be part of the context
lines, thus heavily confusing Git.

Since it is already expected to migrate from SVN to Git sometime soon,
this would also make $Id$ redundant.

[1]: https://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.keywords.html
[2]: https://git-scm.com/docs/git-svn


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9550 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7acf9a9675a0496a85ecd61210b8c29c89f9517a
Former-commit-id: 1878bb38889e4dddc83ef762b6b384f0f0a4ecc5
2024-09-30 05:17:15 +00:00
iobyte
d7262c6526 fix Windows eventloop crash
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9510 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 50f2810b869040a5343e3b322cbd8f3dbcc09cc1
Former-commit-id: 6e4960da072b9cc99bf3540561bb15fe853f9e70
2024-07-31 01:03:57 +00:00
xavi92
e06a519365 Remove trailing newlines
The following shell script was used:

while read f
do
	sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' -- "$f"
done <<EOF
$(svn ls -R | grep \
	-e '.\cpp$' \
	-e '\.cmake$' \
	-e '\.txt$' \
	-e '\.cppcheck$' \
	-e '\.frag$' \
	-e '\.h$' \
	-e '\.hpp$' \
	-e '\.vert$' \
	-e '\.xml$' \
	-e '\.java$' \
	-e '\.c$')
EOF


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9509 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: aac7ab5702079417cb16ca2fa291be07033ea549
Former-commit-id: f0286e4119f166d7b78f9d13ff2ea04ffaa95c67
2024-07-30 22:17:48 +00:00
xavi92
6d7ca06e02 String trailing whitespaces
The following shell script was used:

while read f
do
        sed -Ei 's/[[:space:]]+$//g' "$f"
done <<EOF
$(svn ls -R | grep \
        -e '.\cpp$' \
        -e '\.cmake$' \
        -e '\.txt$' \
        -e '\.cppcheck$' \
        -e '\.frag$' \
        -e '\.h$' \
        -e '\.hpp$' \
        -e '\.vert$' \
        -e '\.xml$' \
        -e '\.java$' \
        -e '\.c$')
EOF

As a side effect, this has also converted some files from CRLF line
endings to LF.

File extensions such as .ac or .osg were intentionally left out because
those usually are very large files generated by tools.



git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9507 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6c1e5ab34415982ec77fc92a77e1b1c149518eca
Former-commit-id: c6cf9480ae7c1d2f9a999eb6c6b976eef8bae3ba
2024-07-30 21:45:07 +00:00
beaglejoe
6b142146cd Find TinyGLTF on Windows
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8865 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 941508cbe6acf08848d3fe00708402fc5e2cde30
Former-commit-id: 5821ec5ab6bf8dea665568198753639fc1287f94
2023-04-04 15:15:42 +00:00
beaglejoe
681b24b9d8 Fix for finding new sdl2_mixer
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8321 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d286fa95ad436f64b5db26bf8328e9db7800dca5
Former-commit-id: 3fe82af8f22d3d1a321eb1e73325fc8bc9a55848
2022-07-17 02:23:40 +00:00
beaglejoe
d23f559887 Comment out some debug spam
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8273 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f012cbb9677d4af9d1efdc713dded91aa5118896
Former-commit-id: c2172ed3990e75f7a285daa3ee11c5d0c4753f85
2022-06-27 21:19:43 +00:00
beaglejoe
7309853b9b Separate the real weather from OPTION_WEBSERVER. Real weather is now always available
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8126 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 452790a2a0cb9d22be53af0e4545118e00ae66e1
Former-commit-id: 46bd061d6d49cc22646abe0e8d238accc659bfca
2022-04-26 02:55:50 +00:00
beaglejoe
dc8f8fa292 Fix Ticket #939 prefer newer dependenciescd ins
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7923 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a701df77902038f6da6d954fb6f3610f56d17260
Former-commit-id: 316bf69eb8dbb504d55b063b8ef2a45398fcccfe
2022-01-19 02:47:11 +00:00
beaglejoe
cf9a0448d7 Fix osgText added to dll list twice
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7922 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: fd0e8404bbb6e103c8c5025e26d5cbf4254b57a3
Former-commit-id: 7860447b46e651039e6eba2e1be615500bf99e5d
2022-01-18 23:38:52 +00:00
beaglejoe
990f050708 Don't install the OSG serializers on Windows
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7921 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5d1222c5920ed6e2fe6b5ffe8b8fa249f6892ad6
Former-commit-id: f0e587e72527b830f68caf26641736b808a9ee7d
2022-01-18 23:36:02 +00:00
beaglejoe
cacb89eae2 Remove CMake SDL1 code
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7657 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 858db72cefd554825934c81a8d252255cae56b96
Former-commit-id: 17ade6a6b90ab1541bcfad65879926fef79e3518
2021-09-16 21:03:12 +00:00
beaglejoe
719b1b0417 Redo musicplayer to use sdl2_mixer
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7639 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 4f23943768a24920be0e82a7624de520e84f19d0
Former-commit-id: d2374905a4fe1ea01ff40062817184283e1da811
2021-08-31 15:49:49 +00:00
beaglejoe
29593d4951 Fix for vorbis and vorbisfile dlls not being copied to bin directory
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7184 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 99bacd4091f8e0acc498a34cd2c83c350c2a404a
Former-commit-id: 060f9a71f144130ffaa253e57362b47fa0fa3bc1
2020-10-04 18:35:53 +00:00
beaglejoe
105cd13f18 Updated to find vorbis 1.3.7
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7153 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1ecd5571e0bd60940fdbb378ae4e8a8b15b60b33
Former-commit-id: 127b0422974866c4e82c80e322b2c28026911452
2020-07-11 16:13:56 +00:00
beaglejoe
473c517de3 Code to find OSG 3.6.5
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6830 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 8765c450e16ae0111a076d70d8371c89a0ff5469
Former-commit-id: 9b8ce4499d88be3a2546688346627584f2ed78cb
2020-02-11 23:38:55 +00:00
beaglejoe
18747b2d29 Updated to find expat 2.2.9 (now named libexpat)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6740 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7a5c499418f00929fa996b83e032d51f7f3a1fff
Former-commit-id: 5e218af908a2d737db85dc49b331ac81dfe4bcb9
2019-10-04 01:57:48 +00:00
beaglejoe
39fbf385f3 Updated OGG to 1.3.4
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6730 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 28fe977e3293d7ab9c88312101096d1477c4ce6d
Former-commit-id: 75c73a499e4b2abf82ec67f79a9b41a9d8039864
2019-09-08 04:17:41 +00:00
beaglejoe
2f2fa86242 Code to find OSG 3.6.4
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6718 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f947e278e9d46fd2febb2c88d57dfdcd62d12945
Former-commit-id: 61eb05f7ba48a25f1287f491c39d3884aa375819
2019-08-21 04:02:41 +00:00
beaglejoe
e48a390f48 osgdb_freetype Plugin not being installed on Windows
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6611 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3c1ff55173f0d1102b16f08a104eaf2e247cdbae
Former-commit-id: e9ca19d7970c87b931e54645ab6d50ec715273f8
2019-02-26 02:41:10 +00:00
beaglejoe
34f87cff14 Add code to find ot21-OpenThreads.dll from OSG 3.6.3
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6556 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 396d2e1b5d113ef5a98d7b0f6ee539607fca367d
Former-commit-id: 58a6383fdd73a6fa40c8dac063c3d7609fea4d5b
2018-11-06 22:21:40 +00:00
torcs-ng
aeacd4bca1 - update cmake files for include new OSG
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6551 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e03a4e6b267ba04005c9e61058e130dc1902a526
Former-commit-id: 629002bcef9103d94b716674578c1d0ae3e201fe
2018-09-29 17:41:21 +00:00
beaglejoe
cf83e04ad7 Changes for OsgHUD on windows (requires osgText)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6503 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 04e4d91e4657c62699b2c36b450818cf8c15fc2d
Former-commit-id: 8dfbb9d4bf457a9afd674a22c7563a7bb7cd0d4e
2017-01-23 02:11:35 +00:00
madbad
af9039930c Add OPTION_WEBSERVER to cmake
to be able to build with/without WEBSERVER 	services

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6270 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c0b1609bda1538082cb2a657166feaa6cc83d31b
Former-commit-id: 0152c643f33dc0b9ce46e90279eb85d471d56e82
2015-11-23 19:44:40 +00:00
madbad
46744a8550 cmake fix for curl dependencie on windows
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6262 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 11a0aafaab1255a7861890f2c3df174f6c8c7499
Former-commit-id: 2760c13f758706f7c6a1ecbe850e42410e31b6b2
2015-11-23 19:43:39 +00:00
madbad
afe4ca8a5c add CURL dependencie to cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6257 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5a60f8be2fb1db6f355ae16e27837de5db36d689
Former-commit-id: 9269da49bd0d59cabca3c02f25803ba7128fa1cd
2015-11-23 19:43:03 +00:00
beaglejoe
7c17847913 Allow use of new solid2 lib
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6074 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e76b28082a919cefb17ee473cfb00b31367e5dcc
Former-commit-id: f7df0868ea5745d14abe2216aeebf8f3a566f58e
2015-08-17 16:11:15 +00:00
beaglejoe
68c1cf727f Allow windows to detect OSG 3.4rc
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6062 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a88433927bedb3753acf2b7c8b8c155db618a971
Former-commit-id: a669707d6d4d82f594ec6cf50af1bcb9e45a9444
2015-08-09 04:36:49 +00:00
torcs-ng
32f65c7be2 - added OpenScenegraph 3.3.8 in cmake search and install
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6026 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: cb333471bac05e07772ff62bac687bdf15443b2d
Former-commit-id: caf36640cc814ac4ca0cb060f30916877bc74f26
2015-06-14 17:42:27 +00:00
torcs-ng
9e78c837fb - Update forza for osggraph
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5979 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 69e53f20c795abc6f265bbf55cb57c0874dc97aa
Former-commit-id: 22492062ccfab1ee077a2e8e12909692d0e5de4e
2015-04-19 23:18:52 +00:00
beaglejoe
acf61b5558 CMake changes for Ticket 711 (SDL2 option)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5937 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: cd6252bb58a99a6aba21d68a7d794ffec640aa82
Former-commit-id: 40b19de4d07e2f4a52846fa7404f414035272309
2015-04-01 19:29:12 +00:00
beaglejoe
72f292a5c2 Fixed For CMake less than 3.0
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5925 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 41fcbb0efd2bcf88e29b11db4b98711380201125
Former-commit-id: 9ace2463d0bb542f5d0a75de273781e50ddff526
2015-03-24 06:48:04 +00:00
torcs-ng
540a4e67f9 - Update cmake/internaldeps.cmake
- Update cmake/macros.cmake

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5924 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 07d67ef504416625f3dbfa1ef1b5d49ee530c031
Former-commit-id: 2f1aab2c0f54d565ed51081d7cb071a9def615ef
2015-03-23 23:17:26 +00:00
beaglejoe
701eae46e7 Fixes for Visual Studio OSG build
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5922 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 118ee2e46dd7226bc33e805b8f996b2b6fcb7831
Former-commit-id: 7024a180599c85a2b1b35eeb4c62ff701b38701f
2015-03-22 22:32:38 +00:00
torcs-ng
fc51dce5a6 - Reverted previous commite (for osggraph)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5921 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: cd675def74ae1fff3f89a0075d139b4d56a81762
Former-commit-id: ae29d6382dce27781613a30f3230ad4bc4948e19
2015-03-22 21:57:08 +00:00
torcs-ng
f9fe505ead - Removed Option for OsgGraph (Now it's always build)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5920 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 05438b300bbff6b1962c55785174be86c3260098
Former-commit-id: a35fbe420632d2e2f8ee5bd3905573269b9ff673
2015-03-22 19:39:00 +00:00
torcs-ng
b4d98d0502 - Update cmake (for png15)
- revert cmakefile for standardgame
- update Peter's track

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5911 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1ee27c88eddc6e47dc2a3437ed2b26948489dcfe
Former-commit-id: aef1caefe4cbefb13ad0f25405225d034e3b106a
2015-03-18 23:56:29 +00:00
beaglejoe
8a769a243e fix to find new OSG on Windows
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5910 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 17498926f9eb9dd50dcf03db7e5e245ede24d2ec
Former-commit-id: 9defab1938327af806f2b3c34df565a646e8f130
2015-03-18 22:54:07 +00:00
torcs-ng
5b137c5d7d - update cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5909 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 33d79aba18f363c37b00a3b3b551aff6cdbad4b8
Former-commit-id: 193efea0e008969992544c7d04e0e78c772af1b1
2015-03-18 22:01:07 +00:00
torcs-ng
13fa7a0c01 - Update cmake for new jpeg lib
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5900 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f423274d78509f435cdf40a909578826d4df579c
Former-commit-id: 76946bb76f5b5a0961728d26a19e29d5e885458b
2015-03-17 20:36:37 +00:00
mungewell
33e3ac9e8b Bug #692 - Initial attempt at replay capability
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5803 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1f0407f4a4483879b707d900de72ea3970faa1a1
Former-commit-id: 0d2175538d52a91f2216e8aca7928148c482f5d0
2014-07-30 03:19:34 +00:00
torcs-ng
7d3c987ad2 update mpa1 wheel-src
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5635 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a05feca05e557c86ae7ce76cbb2b251aadd61aa6
Former-commit-id: b03cfa51e37c6786f2d0b07668a267728d9bf199
2013-07-28 14:20:24 +00:00
beaglejoe
b24d454a21 Remove Menu Music CMake option
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5485 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 29e0a9e657c2bc447328b06c3dd92478c6f7cf41
Former-commit-id: ef7c09760fb0fb9ae6743810c4fcd634bc343eab
2013-05-28 15:50:38 +00:00
torcs-ng
1c27be7d28 update CMake for good configure with osg
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5442 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 187e9480caaecdc53e8b877ffb6baa6dba3be5c2
Former-commit-id: e5e4bf2d54dfbde32a43eed6a91f06bf61067b68
2013-05-10 21:27:14 +00:00
torcs-ng
2111b19874 update cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5441 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c1819302f318e56eabcf5c29b4891f1f17fcfa78
Former-commit-id: 18a7ce6042fa5f246011b9b36b27220a608b25df
2013-05-09 23:10:46 +00:00