Skip to content

Commit

Permalink
Merge pull request #772 from PDAL/fix-make-clean
Browse files Browse the repository at this point in the history
only nuke the files in ./lib on clean for 'make clean', not the lib directory itself
  • Loading branch information
hobu committed Feb 24, 2015
2 parents 1a585ee + c74d6bd commit 8aa6064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -65,7 +65,7 @@ ENDIF("${isSystemDir}" STREQUAL "-1")

# wipe lib/ drectory on clean. It will have plugins that could be out of date
# in the next build
set_directory_properties(PROPERTY ADDITIONAL_MAKE_CLEAN_FILES "${PDAL_OUTPUT_LIB_DIR}")
set_directory_properties(PROPERTY ADDITIONAL_MAKE_CLEAN_FILES "${PDAL_OUTPUT_LIB_DIR}/*")

if(WIN32)
add_definitions("-DPDAL_DLL_EXPORT=1")
Expand Down

0 comments on commit 8aa6064

Please sign in to comment.