blob: 86abec9190e53760b8ab916f85cc4a3a6d972e80 [file] [log] [blame]
Brenden Blanco246b9422015-06-05 11:15:27 -07001# Copyright (c) PLUMgrid, Inc.
2# Licensed under the Apache License, Version 2.0 (the "License")
Brenden Blancocd5cb412015-04-26 09:41:58 -07003configure_file(wrapper.sh.in "${CMAKE_CURRENT_BINARY_DIR}/wrapper.sh" @ONLY)
4
5set(TEST_WRAPPER ${CMAKE_CURRENT_BINARY_DIR}/wrapper.sh)
6
Brenden Blanco581fc7d2016-04-19 11:42:49 -07007add_test(NAME style-check COMMAND ${CMAKE_SOURCE_DIR}/scripts/style-check.sh)
Brenden Blanco495604f2016-05-03 09:39:54 -07008set_tests_properties(style-check PROPERTIES PASS_REGULAR_EXPRESSION ".*")
Brenden Blanco581fc7d2016-04-19 11:42:49 -07009
Brenden Blanco7fef6952017-08-22 15:47:12 -070010if(ENABLE_CLANG_JIT)
Brenden Blancof178be92015-06-01 10:15:42 -070011add_subdirectory(cc)
Rich Lane1ec985d2015-09-14 17:21:39 -070012add_subdirectory(python)
Vicent Marti28b4efe2016-03-30 17:31:20 +020013add_subdirectory(lua)
Brenden Blanco7fef6952017-08-22 15:47:12 -070014endif()