cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(tomoprocess CXX) # Check if the machine is 64 bits. include(CheckTypeSize) check_type_size("void*" SIZEOF_VOID_P) if(SIZEOF_VOID_P EQUAL 8) set(HAVE_64BIT_SIZE_T TRUE) endif(SIZEOF_VOID_P EQUAL 8) add_subdirectory(common) add_subdirectory(contrib) add_subdirectory(filters)