cmake_minimum_required( VERSION 2.8.2 )

project( FLEXBAR )

set( EXECUTABLE_OUTPUT_PATH ${FLEXBAR_BINARY_DIR} )

add_subdirectory( src )

if( NOT CMAKE_BUILD_TYPE )
	set( CMAKE_BUILD_TYPE Release CACHE STRING
		"Choose the type of build: None Debug Release RelWithDebInfo MinSizeRel." FORCE )
endif()

