by viktorelofsson on 4/28/16, 7:25 AM with 26 comments
by viktorelofsson on 4/28/16, 7:29 AM
You can find the relevant API documentation at
- http://docs.picotorrent.org/en/latest/websocket-api/index.ht...
by cm3 on 4/28/16, 10:32 AM
I'm no CMake expert, but this looks odd:
https://github.com/picotorrent/picotorrent/blob/develop/CMak...
# Get current architecture
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(PICO_ARCH "x64" )
else(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(PICO_ARCH "x86")
endif(CMAKE_SIZEOF_VOID_P EQUAL 8)
EDIT: this is just CMake's very odd syntax and it's actually a single condition.by tejinderss on 4/28/16, 2:58 PM
by cm3 on 4/28/16, 10:36 AM