mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
For various reasons, it can be useful/interesting to create builds of Swift that minimize dependencies. Let's try to keep that working as long as we can.
14 lines
297 B
C
14 lines
297 B
C
// This file is processed by CMake.
|
|
// See https://cmake.org/cmake/help/v3.0/command/configure_file.html.
|
|
|
|
#ifndef SWIFT_CONFIG_H
|
|
#define SWIFT_CONFIG_H
|
|
|
|
#cmakedefine HAVE_WAIT4 1
|
|
|
|
#cmakedefine HAVE_PROC_PID_RUSAGE 1
|
|
|
|
#cmakedefine01 SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY
|
|
|
|
#endif // SWIFT_CONFIG_H
|