Mercurial > fife-parpg
comparison tests/core_tests/fife_unittest.h @ 387:847c6ec4544e
Fixed the scons batch files (win32).
Core tests now compile on windows but fail to link.
author | prock@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Fri, 22 Jan 2010 19:03:43 +0000 |
parents | 64738befdf3b |
children |
comparison
equal
deleted
inserted
replaced
386:fed41c6364d4 | 387:847c6ec4544e |
---|---|
25 // Standard C++ library includes | 25 // Standard C++ library includes |
26 | 26 |
27 // Platform specific includes | 27 // Platform specific includes |
28 // Linux | 28 // Linux |
29 #if defined( __unix__ ) | 29 #if defined( __unix__ ) |
30 #include "../../ext/UnitTest++/src/UnitTest++.h" | 30 #include <unittest++/UnitTest++.h> |
31 #include "../../ext/UnitTest++/src/TestReporterStdout.h" | 31 #include <unittest++/TestReporterStdout.h> |
32 #endif | 32 #endif |
33 | 33 |
34 // Win32 | 34 // Win32 |
35 #if defined( WIN32 ) | 35 #if defined( WIN32 ) |
36 #include "../../ext/UnitTest++/src/UnitTest++.h" | 36 #include <UnitTest++.h> |
37 #include "../../ext/UnitTest++/src/TestReporterStdout.h" | 37 #include <TestReporterStdout.h> |
38 #endif | 38 #endif |
39 | 39 |
40 // Macintosh | 40 // Macintosh |
41 #if defined( __APPLE_CC__ ) | 41 #if defined( __APPLE_CC__ ) |
42 #include <unittest++/UnitTest++.h> | 42 #include <unittest++/UnitTest++.h> |