Files
tor/src/app/main/include.am
T
Nick Mathewson 3f442987f1 Log a warning if Tor was built with any "risky" compile-time options
These options are meant for testing builds only, and are likely to
cause trouble if used in a production environment.

Closes #18888.
2020-10-28 11:34:30 -04:00

21 lines
490 B
Plaintext

# ADD_C_FILE: INSERT SOURCES HERE.
LIBTOR_APP_A_SOURCES += \
src/app/main/main.c \
src/app/main/risky_options.c \
src/app/main/shutdown.c \
src/app/main/subsystem_list.c \
src/app/main/subsysmgr.c
# ADD_C_FILE: INSERT HEADERS HERE.
noinst_HEADERS += \
src/app/main/main.h \
src/app/main/ntmain.h \
src/app/main/risky_options.h \
src/app/main/shutdown.h \
src/app/main/subsysmgr.h
if BUILD_NT_SERVICES
LIBTOR_APP_A_SOURCES += src/app/main/ntmain.c
endif