
set(EXTRA_DEPENDENCIES "")
message(STATUS "EXTRA_DEPENDENCIES = ${EXTRA_DEPENDENCIES}")

if(${CMAKE_CXX_COMPILER_ID} STREQUAL PGI) # nvc++ is based on the PGI compiler
	message(STATUS "Find nvc++ or kind of PGI compiler")
	set(PHOENIX_OFAST "-O4")
else()
	set(PHOENIX_OFAST "-Ofast")
endif()


add_subdirectory(TestMicroBenchmark)
add_subdirectory(HadamardProduct)
add_subdirectory(HadamardProductRdtsc)
add_subdirectory(HadamardProductNbTest)
add_subdirectory(HadamardProductNbTestElement)

add_subdirectory(HadamardProductAuto)

