CMakeLists doesn't compile tests on release
Created by: jetfuel
In the CMakeLists.txt, line 55
it says # compile test only in release mode
. So it seems we do want to compile tests in release mode.
However, the actual flow shows
if (NOT ON_RELEASE)
add_executable(vl_test
Looks like we only compile tests during development. It doesn't match the description.
Which one is the correct behavior? Tests on release or tests on development?