
cmake_minimum_required(VERSION 2.6)

project(pgm)


file(
GLOB
source_files
*.cpp
*.hpp
)

SET(CMAKE_BUILD_TYPE Debug)
SET(CMAKE_CXX_FLAGS "-Wall -Wextra" )


add_executable(	
   pgm
   ${source_files}
   )	

target_link_libraries(pgm "-lm")



