Install the lz4frame.h header in the cmake build
authorEric Berge <eric.berge@quantum.com>
Tue, 28 Apr 2015 14:00:23 +0000 (09:00 -0500)
committerEric Berge <eric.berge@quantum.com>
Tue, 28 Apr 2015 14:53:08 +0000 (09:53 -0500)
cmake_unofficial/CMakeLists.txt

index 77d9ca5..4c3eb65 100644 (file)
@@ -25,7 +25,7 @@ endif()
 
 set(LZ4_DIR ../lib/)
 set(PRG_DIR ../programs/)
-set(LZ4_SRCS_LIB ${LZ4_DIR}lz4.c ${LZ4_DIR}lz4hc.c ${LZ4_DIR}lz4.h ${LZ4_DIR}lz4hc.h ${LZ4_DIR}lz4frame.c ${LZ4_DIR}xxhash.c)
+set(LZ4_SRCS_LIB ${LZ4_DIR}lz4.c ${LZ4_DIR}lz4hc.c ${LZ4_DIR}lz4.h ${LZ4_DIR}lz4hc.h ${LZ4_DIR}lz4frame.c ${LZ4_DIR}lz4frame.h ${LZ4_DIR}xxhash.c)
 set(LZ4_SRCS ${LZ4_DIR}lz4frame.c ${LZ4_DIR}xxhash.c ${PRG_DIR}bench.c ${PRG_DIR}lz4cli.c ${PRG_DIR}lz4io.c)
 
 if(BUILD_TOOLS AND NOT BUILD_LIBS)
@@ -53,6 +53,7 @@ if(BUILD_LIBS)
     install(FILES
     ${LZ4_DIR}/lz4.h
     ${LZ4_DIR}/lz4hc.h
+    ${LZ4_DIR}/lz4frame.h
     DESTINATION include
     )