cmake_minimum_required(VERSION 2.4)

set (PROJECT_NAME "simpleburn")
project (${PROJECT_NAME})
set (PROJECT_VERSION "1.6.0.2")

set (DETECTION "HAL" CACHE STRING "Device and media detection method (HAL, LIBCDIO or UDEV).")
set (BURNING "CDRTOOLS" CACHE STRING "Burning suite (CDRTOOLS or LIBBURNIA).")
option (DEBUG "Enable debug informations.")
option (ALLOW_DEVICES_SYMLINKS "When using LIBCDIO detection method, allow symbolic links for devices.")
option (ISOSIZE "Install isosize command alongside with SimpleBurn.")

add_subdirectory (po)
add_subdirectory (src)
add_subdirectory (scripts)
add_subdirectory (isosize)
install (DIRECTORY doc/ DESTINATION doc/${PROJECT_NAME}-${PROJECT_VERSION})
