mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 22:30:13 +00:00
9a44ed43cf
Differential Revision: https://reviews.llvm.org/D123028
19 lines
996 B
CMake
19 lines
996 B
CMake
|
|
add_custom_target(libcxx-generate-public-header-transitive-inclusion-tests
|
|
COMMAND "${Python3_EXECUTABLE}" "${LIBCXX_SOURCE_DIR}/utils/generate_header_inclusion_tests.py"
|
|
COMMENT "Generate tests checking for mandated transitive includes in public headers.")
|
|
|
|
add_custom_target(libcxx-generate-public-header-tests
|
|
COMMAND "${Python3_EXECUTABLE}" "${LIBCXX_SOURCE_DIR}/utils/generate_header_tests.py"
|
|
COMMENT "Generate tests for including public headers.")
|
|
|
|
add_custom_target(libcxx-generate-feature-test-macros
|
|
COMMAND "${Python3_EXECUTABLE}" "${LIBCXX_SOURCE_DIR}/utils/generate_feature_test_macro_components.py"
|
|
COMMENT "Generate the <version> header and tests for feature test macros.")
|
|
|
|
add_custom_target(libcxx-generate-files
|
|
DEPENDS libcxx-generate-public-header-transitive-inclusion-tests
|
|
libcxx-generate-public-header-tests
|
|
libcxx-generate-feature-test-macros
|
|
COMMENT "Create all the auto-generated files in libc++ and its tests.")
|