do not build samples if null renderer

This commit is contained in:
Seo Youngjin 2021-03-26 15:21:13 +09:00 committed by Anonymous Maarten
parent 36f95294fb
commit 351ddded34
1 changed files with 10 additions and 8 deletions

View File

@ -10,12 +10,14 @@ if(LIBRW_PLATFORM_PS2)
add_subdirectory(ps2test) add_subdirectory(ps2test)
endif() endif()
if(NOT LIBRW_PLATFORM_PS2) if(UNIX)
add_subdirectory(playground) if(NOT LIBRW_PLATFORM_NULL AND NOT LIBRW_PLATFORM_PS2)
add_subdirectory(lights) add_subdirectory(playground)
add_subdirectory(subrast) add_subdirectory(lights)
add_subdirectory(camera) add_subdirectory(subrast)
add_subdirectory(im2d) add_subdirectory(camera)
add_subdirectory(im3d) add_subdirectory(im2d)
add_subdirectory(ska2anm) add_subdirectory(im3d)
add_subdirectory(ska2anm)
endif()
endif() endif()