Skip to content

Commit

Permalink
STYLE: Convert CMake-language commands to lower case
Browse files Browse the repository at this point in the history
Ancient CMake versions required upper-case commands.  Later command names
became case-insensitive.  Now the preferred style is lower-case.
  • Loading branch information
hjmjohnson committed Feb 21, 2020
1 parent 4b01c47 commit 039359c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# The header files
SET(HEADERS
set(HEADERS
itkCuberilleImageToMeshFilter.h
)

# The implementation files
SET(SOURCES
set(SOURCES
itkCuberilleImageToMeshFilter.txx
examples.cxx
)

# Add this as include directory
INCLUDE_DIRECTORIES(
include_directories(
${CMAKE_SOURCE_DIR}
${SOURCE_PATH}
)

# Main library
ADD_EXECUTABLE(Examples ${HEADERS} ${SOURCES})
TARGET_LINK_LIBRARIES(Examples ${ITK_LIBRARIES} ITKQuadEdgeMesh)
add_executable(Examples ${HEADERS} ${SOURCES})
target_link_libraries(Examples ${ITK_LIBRARIES} ITKQuadEdgeMesh)

0 comments on commit 039359c

Please sign in to comment.