diff options
author | Josh Blum | 2013-01-20 17:19:45 -0800 |
---|---|---|
committer | Josh Blum | 2013-01-20 17:19:45 -0800 |
commit | bc8bbc71f799ea81e38104ff9d943a5eab1e203c (patch) | |
tree | b71d56479ee531d1d9b2dc144f83b4e932b32003 | |
parent | 0d22d512ac77e61106a04801fb2a3ea4cb716170 (diff) | |
download | gnuradio-bc8bbc71f799ea81e38104ff9d943a5eab1e203c.tar.gz gnuradio-bc8bbc71f799ea81e38104ff9d943a5eab1e203c.tar.bz2 gnuradio-bc8bbc71f799ea81e38104ff9d943a5eab1e203c.zip |
volk: the profiler is no longer strictly unix
-rw-r--r-- | volk/apps/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/volk/apps/CMakeLists.txt b/volk/apps/CMakeLists.txt index 51d8d069d..577b7ef13 100644 --- a/volk/apps/CMakeLists.txt +++ b/volk/apps/CMakeLists.txt @@ -18,7 +18,7 @@ ######################################################################## # Setup profiler ######################################################################## -if(Boost_FOUND AND UNIX) #uses mkdir and $HOME +if(Boost_FOUND) if(MSVC) include_directories(${CMAKE_SOURCE_DIR}/msvc) @@ -46,4 +46,4 @@ install( COMPONENT "volk" ) -endif(Boost_FOUND AND UNIX) +endif(Boost_FOUND) |