Browse Source

update for personal builds

richarddobson 3 years ago
parent
commit
debef661af
1 changed files with 4 additions and 4 deletions
  1. 4 4
      dev/submix/CMakeLists.txt

+ 4 - 4
dev/submix/CMakeLists.txt

@@ -1,5 +1,5 @@
 if(APPLE)
-  set(CMAKE_C_FLAGS "-O2 -Wall -mmacosx-version-min=10.5 -Dunix")
+  set(CMAKE_C_FLAGS "-O2 -Wall -Dunix")
 else()
   if(MINGW)
     set(CMAKE_C_FLAGS "-O2 -Wall -DWIN32")
@@ -8,15 +8,15 @@ else()
   endif()
 endif()
 
-link_directories(../cdp2k ../sfsys)
+link_directories(../cdp2k ../newsfsys ../pvxio2 )
 
-include_directories(../../include)
+include_directories(../newinclude)
 
 add_executable(submix main.c ap_mix.c inbetwee.c mixmerge.c
         mixprepro.c  mixshuf0.c mixshuf1.c mixshuf2.c newmix0.c
         newmix1.c setupmix.c syncatt.c)
 
-target_link_libraries(submix cdp2k sfsys ${EXTRA_LIBRARIES})
+target_link_libraries(submix cdp2k sfsys pvxio2 ${EXTRA_LIBRARIES})
 
 my_install(submix)