You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
484 B
15 lines
484 B
# Copyright (c) PLUMgrid, Inc.
|
|
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
configure_file(wrapper.sh.in "${CMAKE_CURRENT_BINARY_DIR}/wrapper.sh" @ONLY)
|
|
|
|
set(TEST_WRAPPER ${CMAKE_CURRENT_BINARY_DIR}/wrapper.sh)
|
|
|
|
add_test(NAME style-check COMMAND ${CMAKE_SOURCE_DIR}/scripts/c-style-check.sh)
|
|
set_tests_properties(style-check PROPERTIES PASS_REGULAR_EXPRESSION ".*")
|
|
|
|
if(ENABLE_CLANG_JIT)
|
|
add_subdirectory(cc)
|
|
add_subdirectory(python)
|
|
add_subdirectory(lua)
|
|
endif()
|