diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/SConscript | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/base/SConscript b/base/SConscript index 496ba0a..8e5cf21 100644 --- a/base/SConscript +++ b/base/SConscript @@ -191,7 +191,6 @@ env_tests.Prepend( LIBS = [ 'base', 'base_gfx', - 'event', 'gtest', 'icuuc', 'libpng', @@ -231,6 +230,13 @@ if env['PLATFORM'] == 'win32': ], ) +if env['PLATFORM'] == 'posix': + env_tests.Append( + LIBS = [ + 'event', + ], + ) + # These test files work on *all* platforms; tests that don't work # cross-platform live below. test_files = [ |