diff options
author | Josh Blum | 2011-10-08 17:11:12 -0700 |
---|---|---|
committer | Josh Blum | 2011-10-08 17:11:12 -0700 |
commit | 71c0f14a46f85027b95f2f5f6d3d219cc9e3783e (patch) | |
tree | 046d89555243ede65bfc7bc0a6cbfc7f870ff4cb /gruel/src/include | |
parent | 63b87bf4e6e9a2f1112c17c57796b69b3b8a2b3e (diff) | |
download | gnuradio-71c0f14a46f85027b95f2f5f6d3d219cc9e3783e.tar.gz gnuradio-71c0f14a46f85027b95f2f5f6d3d219cc9e3783e.tar.bz2 gnuradio-71c0f14a46f85027b95f2f5f6d3d219cc9e3783e.zip |
gr: the CMakeLists.txt took a chill pill
Diffstat (limited to 'gruel/src/include')
-rw-r--r-- | gruel/src/include/gruel/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gruel/src/include/gruel/CMakeLists.txt b/gruel/src/include/gruel/CMakeLists.txt index 2f80043a4..811856b98 100644 --- a/gruel/src/include/gruel/CMakeLists.txt +++ b/gruel/src/include/gruel/CMakeLists.txt @@ -20,15 +20,15 @@ ######################################################################## # Generate inet.h header file ######################################################################## -INCLUDE(TestBigEndian) -ENABLE_LANGUAGE(C) +include(TestBigEndian) +enable_language(C) TEST_BIG_ENDIAN(GR_ARCH_BIGENDIAN) -INCLUDE(CheckIncludeFileCXX) +include(CheckIncludeFileCXX) CHECK_INCLUDE_FILE_CXX(byteswap.h GR_HAVE_BYTESWAP) CHECK_INCLUDE_FILE_CXX(arpa/inet.h GR_HAVE_ARPA_INET) -CONFIGURE_FILE( +configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/inet.h.in ${CMAKE_CURRENT_BINARY_DIR}/inet.h @ONLY) @@ -36,7 +36,7 @@ CONFIGURE_FILE( ######################################################################## # Install the headers ######################################################################## -INSTALL(FILES +install(FILES api.h attributes.h high_res_timer.h |