#Cmake project file for uMat IC microstructure simulation software 
#By Robert Atwood
#$Id: CMakeLists.txt 1050 2007-09-18 20:24:44Z  $


#It is easiest to provide these functions in a library file
#when using CMake

#This creates libreadlist.a  or .so
#List the c files containing the library functions
add_library(readlist
   convert.c
   debin.c
   findvals.c
   freecsv.c
   init.c
   qsort_csv.c
   read_fg_list.c
   readwrite.c
   readwrite_data.c
   readwrite_fg.c
   unit_conv.c
)
