# CMakeListsLocal.txt sample file. # Copy it to CMakeListsLocal.txt and edit to match your files. # The names of the source files for your module go here. Include # abstract files noted below in this list too. Do not include file # suffixes. # for cmake after version 1.6, SET replaced the other SOURCE_FILES: SET(LOCAL_MODULE_SRCS vtkFastMarching.cxx ) # Place names of abstract class implementations here. No file suffixes. # Comment this out if there are no abstracts. # To add a list of additional libraries you need to link with, uncomment # the following line. The library names should omit the "lib" and any # trailing suffix. # LINK_LIBRARIES (${LOCAL_LIBRARY_BASENAME} library_names_here) # Here's the rule to create the implementation C++ library. # It should happen in the CMakeLists.txt file that includes this one, # but because of a CMake bug that doesn't work. # ADD_LIBRARY (${LOCAL_LIBRARY_BASENAME} ${LOCAL_MODULE_SRCS})