diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-11-04 09:50:17 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-11-04 09:50:17 (GMT) |
commit | 4dbd2faebb345e4b9d888135e9adffe500bdbb38 (patch) | |
tree | 04973c11b288958d056b9b339c6a6bbd59c109f0 /Makefile | |
parent | d01bb4a193338e851e76bd9b80f79bb9bdbc7b31 (diff) | |
download | lz4-4dbd2faebb345e4b9d888135e9adffe500bdbb38.zip lz4-4dbd2faebb345e4b9d888135e9adffe500bdbb38.tar.gz lz4-4dbd2faebb345e4b9d888135e9adffe500bdbb38.tar.bz2 |
Added : cmake test
cmake : corrected xxhash path (thanks to j.magnuson)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -92,6 +92,8 @@ SOURCES = $(TEXT) $(NONTEXT) # Select test target for Travis CI's Build Matrix ifeq ($(LZ4_TRAVIS_CI_ENV),-dist) TRAVIS_TARGET=dist +else ifeq ($(LZ4_TRAVIS_CI_ENV),-cmake) +TRAVIS_TARGET=cmake else ifeq ($(LZ4_TRAVIS_CI_ENV),-examples) TRAVIS_TARGET=examples else @@ -181,6 +183,9 @@ test: test-travis: $(TRAVIS_TARGET) +cmake: + @cd cmake_unofficial; cmake CMakeLists.txt; $(MAKE) + examples: cd examples; $(MAKE) -e test |