Compare commits

...

1 Commits

Author SHA1 Message Date
24859fef8a add target for building with homebrew 2019-02-21 22:05:30 -08:00
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,9 @@
#
all: run
brew:
mkdir -p ws/build && (cd ws/build ; cmake .. ; make)
.PHONY: docker
docker:
docker build -t broadcast_server:latest .

View File

@ -34,3 +34,4 @@ if (APPLE AND USE_TLS)
endif()
target_link_libraries(ws ixwebsocket)
install(TARGETS ws RUNTIME DESTINATION bin)