PROJECT(iINS) # next few lines are simply to insert icons into # the console application on windows IF(WIN32) SET(RESOURCES icon1.ico iINS.rc) ENDIF(WIN32) #what files are needed? SET(IINS_SRCS INSInstrument.cpp INSInstrument.h iINSMain.cpp resource.h ${RESOURCES}) # Add executable called iDepth ADD_EXECUTABLE( iINS ${IINS_SRCS}) # indicate how to link TARGET_LINK_LIBRARIES(iINS ${MOOSLIBS} ${PLATFORM_LIBS} )