소스 검색

add build for newsynth, complete spec for linux

richarddobson 2 년 전
부모
커밋
1ab868a111
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      dev/new/CMakeLists.txt

+ 8 - 0
dev/new/CMakeLists.txt

@@ -92,6 +92,14 @@ target_link_libraries(newmorph cdp2k sfsys pvxio2 ${EXTRA_LIBRARIES})
 
 my_install(newmorph)
 
+add_executable(newsynth synthesis.c)
+if(MINGW)
+target_link_libraries(newsynth cdp2k sfsys pvxio2 ${EXTRA_LIBRARIES})
+else()
+target_link_libraries(newsynth ${AAIOLIB} cdp2k sfsys pvxio2 ${EXTRA_LIBRARIES})
+endif()
+my_install(newsynth)
+
 add_executable(newtex newtex.c)
 target_link_libraries(newtex ${AAIOLIB} cdp2k sfsys pvxio2 ${EXTRA_LIBRARIES})