diff options
author | Michael Dickens <mlk@alum.mit.edu> | 2013-05-17 09:06:21 -0400 |
---|---|---|
committer | Michael Dickens <mlk@alum.mit.edu> | 2013-05-17 09:06:21 -0400 |
commit | acca9925e693a25e7aa603f92666b0956c2262e1 (patch) | |
tree | 16a0c14854fe93caec613c098bd27d250c5ec336 /gr-vocoder/lib/codec2 | |
parent | b1f802015fe5ce88c45f68f09d81fce0cdb75411 (diff) |
Fix header include directory ordering
Diffstat (limited to 'gr-vocoder/lib/codec2')
-rw-r--r-- | gr-vocoder/lib/codec2/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-vocoder/lib/codec2/CMakeLists.txt b/gr-vocoder/lib/codec2/CMakeLists.txt index 95e9d256be..f4ccd22401 100644 --- a/gr-vocoder/lib/codec2/CMakeLists.txt +++ b/gr-vocoder/lib/codec2/CMakeLists.txt @@ -22,7 +22,7 @@ # http://www.vtk.org/Wiki/CMake_Cross_Compiling#Using_executables_in_the_build_created_during_the_build ######################################################################## if(NOT CMAKE_CROSSCOMPILING) - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) + include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}) add_executable(generate_codebook ${CMAKE_CURRENT_SOURCE_DIR}/generate_codebook.c) target_link_libraries(generate_codebook -lm) export(TARGETS generate_codebook APPEND FILE ${EXPORT_FILE}) |