From a1795180fd74607e4f572b2bfa8743f8167f4fa1 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 9 Sep 2017 11:08:08 +0100 Subject: Removing unnecessary libraries --- .dir-locals.el | 12 +++--------- .travis.yml | 6 ++---- lib/SDL2 | 1 - lib/glew | 1 - 4 files changed, 5 insertions(+), 15 deletions(-) delete mode 160000 lib/SDL2 delete mode 160000 lib/glew diff --git a/.dir-locals.el b/.dir-locals.el index 48a041b2..f39d59fe 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -2,25 +2,19 @@ (require 'projectile) (setq company-clang-arguments (delete-dups (append company-clang-arguments - (list (concat "-I" (projectile-project-root) "include"))))) + (list (concat "-I" (projectile-project-root) "yage"))))) (setq company-clang-arguments (delete-dups (append company-clang-arguments (list (concat "-I" (projectile-project-root) "lib/googletest/googletest/include"))))) (setq company-clang-arguments (delete-dups (append company-clang-arguments (list (concat "-I" (projectile-project-root) "lib/rapidjson/include"))))) - (setq company-clang-arguments (delete-dups (append - company-clang-arguments - (list (concat "-I" (projectile-project-root) "lib/rapidxml"))))) (setq flycheck-clang-include-path (delete-dups (append flycheck-clang-include-path - (list (concat (projectile-project-root) "include"))))) + (list (concat (projectile-project-root) "yage"))))) (setq flycheck-clang-include-path (delete-dups (append flycheck-clang-include-path (list (concat (projectile-project-root) "lib/googletest/googletest/include"))))) (setq flycheck-clang-include-path (delete-dups (append flycheck-clang-include-path - (list (concat (projectile-project-root) "lib/rapidjson/include"))))) - (setq flycheck-clang-include-path (delete-dups (append - flycheck-clang-include-path - (list (concat (projectile-project-root) "lib/rapidxml")))))))))) + (list (concat (projectile-project-root) "lib/rapidjson/include")))))))))) diff --git a/.travis.yml b/.travis.yml index b5c22c9b..dae2e92e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,4 @@ language: cpp -sudo: required -os: linux dist: trusty branches: @@ -12,7 +10,7 @@ notifications: email: false git: - depth: 3 + depth: 1 ############# # Compilers # @@ -45,6 +43,6 @@ script: - cd $TRAVIS_BUILD_DIR - mkdir -p build - cd build - - cmake .. + - cmake -DENABLE_TESTING=1 .. - make - ctest diff --git a/lib/SDL2 b/lib/SDL2 deleted file mode 160000 index 5d7cfcca..00000000 --- a/lib/SDL2 +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5d7cfcca344034aff9327f77fc181ae3754e7a90 diff --git a/lib/glew b/lib/glew deleted file mode 160000 index 3a8eff77..00000000 --- a/lib/glew +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3a8eff77da3658c13fbd3634c943d5251d76322c -- cgit