Skip to content

Commit

Permalink
add cmake option to skip building tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vvolkl authored Feb 17, 2020
1 parent d87fd5a commit 6d1b6d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE

#--- add actual code -----------------------------------------------------------
add_subdirectory(src)
add_subdirectory(tests)
if(BUILD_TESTING)
add_subdirectory(tests)
endif()
add_subdirectory(profiling)
if (tricktrack_python)
add_subdirectory(python)
Expand Down

0 comments on commit 6d1b6d0

Please sign in to comment.