# 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. # # Change all 'MyClass' to appropriate source file name # and 'MYCLASS' to your module name (all CAPS) # # note: - SET replaced SOURCE_FILES for cmake 1.6 SET(LOCAL_MODULE_SRCS vtkDeformTensors.cxx vtkDisplacementPValue.cxx vtkDistributionPValue.cxx vtkGridToLinearTransform.cxx vtkINRReader.cxx vtkINRWriter.cxx vtkImageAutoCorrelation.cxx vtkImageBrainSegment.cxx vtkImageGCR.cxx vtkImageHistogramNormalization.cxx vtkImageResliceST.cxx vtkImageScalarsToTensors.cxx vtkImageTransformIntensity.cxx vtkImageWarp.cxx vtkImageWarpDMForce.cxx vtkImageWarpForce.cxx vtkImageWarpOFForce.cxx vtkIntensityTransform.cxx vtkJacobian.cxx vtkLTSPolynomialIT.cxx vtkMeanPValue.cxx vtkPWConstantIT.cxx vtkPWMedianIT.cxx vtkPolynomialIT.cxx vtkSymMat3x3Determinant.cxx vtkVariancePValue.cxx ) # Place names of abstract class implementations here. No file suffixes. # Comment this out if there are no abstracts. # replaced ABSTRACT_FILES from cmake before 1.6 SET_SOURCE_FILES_PROPERTIES ( vtkIntensityTransform ABSTRACT ) # You can add additional include paths here INCLUDE_DIRECTORIES( ${VTKAG_SOURCE_DIR} #/home/liu/gsl/gsl-1.3/lib/include #D:/gsl_project/gsl_1_3 #/projects/lmi/local/extpkg/gsl-1.5/include ${GSL_INC_DIR} ${GSL_INC_DIR}/gsl ${GSL_SRC_DIR} ) #### if you code depends on SlicerBase, uncomment the #### INCLUDE_DIRECTORIES and LINK_LIBRARIES #### lines below #### #INCLUDE_DIRECTORIES( # ${VTKSLICERBASE_SOURCE_DIR}/cxx # ${VTKSLICERBASE_BUILD_DIR} #) #LINK_LIBRARIES (${VTKSLICERBASE_BUILD_LIB}) LINK_LIBRARIES (gsl gslcblas) # Add additional directories to look in for libraries LINK_DIRECTORIES( #${VTKAG_SOURCE_DIR}/lib #/home/liu/gsl/gsl-1.3/lib/lib #D:/gsl_project/gsl_1_3/GSLDLL/ /projects/lmi/local/extpkg/gsl-1.5/lib ${GSL_LIB_DIR} ) # 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)