add config with higher upload limit. Add basic bash run script. Add cmake directives to put these in install location.

This commit is contained in:
Kevin Whitaker
2017-02-22 20:48:39 -05:00
parent 8db237cddd
commit 8bb9728039
3 changed files with 616 additions and 0 deletions

View File

@@ -13,3 +13,5 @@ add_executable(arbitrateor src/main.cpp src/WebInterface.cpp src/GroovePlayer.cp
target_link_libraries(arbitrateor ${Wt_LIBRARIES} ${GROOVE_LIBRARY} ${GROOVE_FINGERPRINT_LIBRARY} ${GROOVE_PLAYER_LIBRARY} ${TAGLIB_LIBRARY} pthread boost_system stdc++fs) #TODO get threading links based on platform. Remove gcc experimental fs when official c++17 exists.
install(TARGETS arbitrateor RUNTIME DESTINATION bin)
install(FILES ${CMAKE_SOURCE_DIR}/wt_config.xml DESTINATION bin)
install(FILES ${CMAKE_SOURCE_DIR}/run.sh DESTINATION bin)