# Make sure the compiler can find include files from our library INCLUDE_DIRECTORIES(. ${VISPACK_INCLUDE_DIRECTORIES}) # Make sure the linker can find the Hello library once it is built. LINK_DIRECTORIES(${VISPACK_BINARY_DIR}/lib) # Add executable called "helloDemo" that is built from the source files ADD_EXECUTABLE(fourier fourier.cxx fourn.cxx) # Link the executable to the Hello library. TARGET_LINK_LIBRARIES(fourier image jpeg tiff fitsio util matrix param lapack blas F77 m )