From 508f464aa7829cf39e472af2ecd329ae3d56e539 Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Thu, 26 Sep 2019 14:06:37 +1000 Subject: [PATCH] housekeeping --- spctools/spc2it/.gitignore | 9 +++++---- spctools/spc2it/.travis.yml | 22 ---------------------- spctools/spc2it/CMakeLists.txt | 5 ++--- 3 files changed, 7 insertions(+), 29 deletions(-) delete mode 100644 spctools/spc2it/.travis.yml diff --git a/spctools/spc2it/.gitignore b/spctools/spc2it/.gitignore index c0e7a6a..dbce19c 100644 --- a/spctools/spc2it/.gitignore +++ b/spctools/spc2it/.gitignore @@ -1,7 +1,8 @@ -_obj +obj/ +build/ spc2it -.DS_Store -Thumbs.db +*.exe *.spc *.it -lol \ No newline at end of file +.DS_Store +Thumbs.db diff --git a/spctools/spc2it/.travis.yml b/spctools/spc2it/.travis.yml deleted file mode 100644 index 497bed6..0000000 --- a/spctools/spc2it/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -language: c -compiler: - - gcc - - clang -before_install: - - sudo apt-get update -qq - - sudo apt-get install cmake -script: mkdir build && cd build && cmake .. && make -env: - global: - # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created - # via the "travis encrypt" command using the project repo's public key - - secure: "NuRR5ZZ/PC58JrBv+n2fzsLWORMFk1VDcn7KsixV0X8+4kQ/k5hsHZ2guafzNl6ASGeaslmTO3Qe6UOJNMpd9kyDlsVGLAA6fsu25Q/R7BReOhSpn1hVQIptgspYh8gagMETldOLl/w0udwRqKVROgcooWa+ltp1R8UGds2R1nM=" - -addons: - coverity_scan: - project: - name: "uyjulian/spc2it" - description: "spc to it" - build_command_prepend: "mkdir build && cd build && cmake .." - build_command: "make" - branch_pattern: coverity_scan diff --git a/spctools/spc2it/CMakeLists.txt b/spctools/spc2it/CMakeLists.txt index 0e1b6fe..81e967d 100644 --- a/spctools/spc2it/CMakeLists.txt +++ b/spctools/spc2it/CMakeLists.txt @@ -10,8 +10,7 @@ set(spc2it_sources it.h sneese_spc.h sound.h - spc2ittypes.h -) + spc2ittypes.h) add_executable(spc2it ${spc2it_sources}) -target_link_libraries(spc2it m) \ No newline at end of file +target_link_libraries(spc2it m)