It's been a few releases in the last 168 days when I announced PicoTorrent on HN and I'd like to get some input on both the progress as well as the new WebSocket API.<p>You can find the relevant API documentation at<p>- <a href="http://docs.picotorrent.org/en/latest/websocket-api/index.html" rel="nofollow">http://docs.picotorrent.org/en/latest/websocket-api/index.ht...</a>
Is the 64bit check in CMakeLists correct?<p>I'm no CMake expert, but this looks odd:<p><a href="https://github.com/picotorrent/picotorrent/blob/develop/CMakeLists.txt#L24-L29" rel="nofollow">https://github.com/picotorrent/picotorrent/blob/develop/CMak...</a><p><pre><code> # 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)
</code></pre>
EDIT: this is just CMake's very odd syntax and it's actually a single condition.