|
|
@@ -1,6 +1,6 @@
|
|
|
if(APPLE)
|
|
|
- set(CMAKE_C_FLAGS "-O2 -Wall -mmacosx-version-min=10.8 -Dunix -fomit-frame-pointer -funroll-loops")
|
|
|
- set(CMAKE_CXX_FLAGS "-O2 -Wall -mmacosx-version-min=10.8 -Dunix -fomit-frame-pointer -funroll-loops -std=c++11 -stdlib=libc++")
|
|
|
+ set(CMAKE_C_FLAGS "-O2 -Wall -Dunix -fomit-frame-pointer -funroll-loops")
|
|
|
+ set(CMAKE_CXX_FLAGS "-O2 -Wall -Dunix -fomit-frame-pointer -funroll-loops -std=c++11 -stdlib=libc++")
|
|
|
else()
|
|
|
if(MINGW)
|
|
|
set(CMAKE_C_FLAGS "-O3 -DWIN32 -D_WIN32 -fomit-frame-pointer -funroll-loops")
|
|
|
@@ -9,13 +9,14 @@ else()
|
|
|
endif()
|
|
|
endif()
|
|
|
|
|
|
-link_directories(../lib)
|
|
|
+# portsf - no use of sfsys here
|
|
|
+link_directories(../lib )
|
|
|
|
|
|
include_directories(../include)
|
|
|
|
|
|
-add_executable(fconv fconv.cpp genrespframe2.cpp mxfftd.c)
|
|
|
+add_executable(fastconv fconv.cpp genrespframe2.cpp mxfftd.c)
|
|
|
|
|
|
-target_link_libraries(fconv portsf sfsys ${EXTRA_LIBRARIES})
|
|
|
+target_link_libraries(fastconv portsf ${EXTRA_LIBRARIES})
|
|
|
|
|
|
-my_install(fconv)
|
|
|
+my_install(fastconv)
|
|
|
|