Skip to content

Commit

Permalink
Made aws-c-compression-huffman-generator optional (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Boswell authored Jun 15, 2019
1 parent 2ee7698 commit 9cefc63
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_PROJECT_NAME}-config.cmake"
DESTINATION "${LIBRARY_DIRECTORY}/${CMAKE_PROJECT_NAME}/cmake/"
COMPONENT Development)

add_subdirectory(source/huffman_generator)
option(BUILD_HUFFMAN_GENERATOR "Whether or not to build the aws-c-common-huffman-generator tool" OFF)
if (BUILD_HUFFMAN_GENERATOR)
add_subdirectory(source/huffman_generator)
endif()

include(CTest)
if (BUILD_TESTING)
Expand Down

0 comments on commit 9cefc63

Please sign in to comment.