mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
16 lines
295 B
CMake
16 lines
295 B
CMake
|
|
if(NOT ARCH STREQUAL "amd64")
|
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/rostests/)
|
|
add_subdirectory(rostests)
|
|
endif()
|
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/rosapps/)
|
|
add_subdirectory(rosapps)
|
|
endif()
|
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/wallpaper/)
|
|
add_subdirectory(wallpaper)
|
|
endif()
|
|
|
|
endif()
|