diff --git a/.appveyor.yml b/.appveyor.yml index b5f0150..1475068 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -28,10 +28,10 @@ install: - env MAKE="mingw32-make -j2" ARCH_OVERRIDE=%PLATFORM% bash build_nim.sh Nim csources dist/nimble NimBinaries - SET PATH=%CD%\Nim\bin;%PATH% - - git clone --depth 1 https://github.com/google/snappy + - git clone --depth 1 https://github.com/google/snappy snappycpp build_script: - - cd snappy + - cd snappycpp - mkdir build - cd build - cmake .. -G "MinGW Makefiles" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin" diff --git a/.travis.yml b/.travis.yml index 1566a35..1da8607 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,14 +20,14 @@ install: - env MAKE="make -j2" bash build_nim.sh Nim csources dist/nimble NimBinaries - export PATH=$PWD/Nim/bin:$PATH - - git clone --depth 1 https://github.com/google/snappy + - git clone --depth 1 https://github.com/google/snappy snappycpp script: - - cd snappy + - cd snappycpp - mkdir build - cd build && cmake ../ && make - cd ../.. - - cp snappy/build/libsnappy.a ./tests/ + - cp snappycpp/build/libsnappy.a ./tests/ - nimble install -y - nimble test