this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add support for CMake

+21 -3
+1
.gitignore
··· 45 45 tools/fft_int32_t 46 46 tools/fft_simd 47 47 test/test_simd 48 + build
+11 -3
.travis.yml
··· 14 14 15 15 install: true 16 16 17 - script: 18 - - make all 19 - - make testall 17 + jobs: 18 + include: 19 + - name: "build (make)" 20 + script: 21 + - make all 22 + - make testall 23 + - name: "build (cmake)" 24 + script: 25 + - mkdir build && cd build 26 + - cmake .. 27 + - make
+9
CMakeLists.txt
··· 1 + cmake_minimum_required(VERSION 2.8) 2 + project(kissfft) 3 + 4 + add_library(kissfft 5 + kiss_fft.c) 6 + 7 + target_include_directories(kissfft PUBLIC 8 + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> 9 + $<INSTALL_INTERFACE:.>)