source: flair-dev/trunk/cmake-modules/ArchDir.cmake@ 105

Last change on this file since 105 was 102, checked in by Sanahuja Guillaume, 5 years ago

modifs for demos resources

File size: 267 bytes
Line 
1if("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "i686")
2 message(FATAL_ERROR "i686 is not supported")
3endif()
4
5if(DEFINED CMAKE_SYSTEM_PROCESSOR_DEFAULTTUNE)
6 SET(ARCH_DIR ${CMAKE_SYSTEM_PROCESSOR_DEFAULTTUNE})
7else()
8 SET(ARCH_DIR ${CMAKE_SYSTEM_PROCESSOR})
9endif()
Note: See TracBrowser for help on using the repository browser.