Disable tests by default

No need to spend time building all the tests unless you specifically
want them.  To build them, run 'cmake -DPRJXRAY_BUILD_TESTING=ON ..' in
the build directory.

Signed-off-by: Rick Altherr <kc8apf@kc8apf.net>
This commit is contained in:
Rick Altherr 2018-01-09 12:26:14 -08:00
parent 908c32adaf
commit f413656912
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.5.0)
project(prjxray)
option(PRJXRAY_BUILD_TESTING "" ON)
option(PRJXRAY_BUILD_TESTING "" OFF)
set(CMAKE_CXX_STANDARD 14)
add_compile_options(-Wall -Werror)