Notes for later:
clean up this CMakeLists.txt to add flags, etc (don't be win32 specific):
(if you want to help cleaning up the above, you can :-)
add this for the luaopen function in proAudioRt_lua.cpp to github:
(this fixes a crash)
I'm going to put a beta release out: (outdated link)
To play and download Puzzle Studio, please visit this page for more information:
https://sites.google.com/site/awertyb/puzzle-studio
clean up this CMakeLists.txt to add flags, etc (don't be win32 specific):
Code:
cmake_minimum_required(VERSION 2.8)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
project(proteaAudio)
find_package(Lua51 5.2)
find_package(DSound)
add_definitions( "-D__WINDOWS_DS__" )
include_directories(rtaudio/ rtaudio/include/ ${LUA_INCLUDE_DIR})
add_library(proteaAudio STATIC proAudio.cpp proAudioRt.cpp stb_vorbis.c rtaudio/RtAudio.cpp)
add_library(proAudioRt MODULE proAudioRt_lua.cpp)
target_link_libraries(proAudioRt proteaAudio ${LUA_LIBRARIES} ${DSOUND_LIBRARIES} winmm.lib)
(if you want to help cleaning up the above, you can :-)
add this for the luaopen function in proAudioRt_lua.cpp to github:
Code:
luaL_newlib(L, funcs);
(this fixes a crash)
I'm going to put a beta release out: (outdated link)
To play and download Puzzle Studio, please visit this page for more information:
https://sites.google.com/site/awertyb/puzzle-studio