1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00
putty-source/utils/CMakeLists.txt
Simon Tatham 6a1b713e13 Reorganise the stubs collection.
I made a specific subdirectory 'stubs' to keep all the link-time stub
modules in, like notiming.c. And I put _one_ run-time stub in it,
namely nullplug.c. But the rest of the runtime stubs went into utils.

I think it's better to keep all the stubs together, so I've moved all
the null*.c in utils into stubs (with the exception of nullstrcmp.c,
which means the 'null' in a different sense). Also, fiddled with the
naming to be a bit more consistent, and stated in the new CMakeLists
the naming policy that distinguishes no-*.c from null-*.c.
2022-09-01 20:43:23 +01:00

79 lines
1.4 KiB
CMake

add_sources_from_current_dir(utils
antispoof.c
backend_socket_log.c
base64_decode_atom.c
base64_decode.c
base64_encode_atom.c
base64_encode.c
base64_valid.c
bufchain.c
buildinfo.c
burnstr.c
cert-expr.c
chomp.c
cmdline_get_passwd_input_state_new.c
conf.c
conf_dest.c
conf_launchable.c
ctrlparse.c
ctrlset_normalise.c
debug.c
decode_utf8.c
decode_utf8_to_wchar.c
default_description.c
dupcat.c
dupprintf.c
dupstr.c
dup_mb_to_wc.c
dup_wc_to_mb.c
encode_utf8.c
encode_wide_string_as_utf8.c
fgetline.c
host_ca_new_free.c
host_strchr.c
host_strchr_internal.c
host_strcspn.c
host_strduptrim.c
host_strrchr.c
key_components.c
log_proxy_stderr.c
make_spr_sw_abort_static.c
marshal.c
memory.c
memxor.c
nullstrcmp.c
out_of_memory.c
parse_blocksize.c
percent_decode.c
percent_encode.c
prompts.c
ptrlen.c
read_file_into.c
seat_connection_fatal.c
seat_dialog_text.c
sessprep.c
sk_free_peer_info.c
smemclr.c
smemeq.c
spr_get_error_message.c
ssh_key_clone.c
ssh2_pick_fingerprint.c
sshutils.c
strbuf.c
string_length_for_printf.c
stripctrl.c
tempseat.c
tree234.c
validate_manual_hostkey.c
version.c
wcwidth.c
wildcard.c
wordwrap.c
write_c_string_literal.c
x11authfile.c
x11authnames.c
x11_dehexify.c
x11_identify_auth_proto.c
x11_make_greeting.c
x11_parse_ip.c)