diff options
author | Josh Blum | 2013-01-20 17:19:45 -0800 |
---|---|---|
committer | Johnathan Corgan | 2013-01-20 18:33:52 -0800 |
commit | 75e3954c0cfcd42898a323a178afabef5ba12e29 (patch) | |
tree | 3f2a1958c701af03c4311c61c2bc52e2070b7c02 | |
parent | 1c35a739b6bc7d46132f9304843888e77fb1d22e (diff) | |
download | gnuradio-75e3954c0cfcd42898a323a178afabef5ba12e29.tar.gz gnuradio-75e3954c0cfcd42898a323a178afabef5ba12e29.tar.bz2 gnuradio-75e3954c0cfcd42898a323a178afabef5ba12e29.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 04bc3beb5..03ad92b79 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) |