1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-08 08:58:00 +00:00

Add missing dependencies on generated source files.

The utils library shouldn't be built until cmake_commit.c exists, and
similarly with the charset library and sbcsdat.c.
This commit is contained in:
Simon Tatham 2021-04-18 17:01:50 +01:00
parent d01f682f32
commit fa353e9f4a
2 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@ add_library(utils STATIC
utils/x11_make_greeting.c
utils/x11_parse_ip.c
${GENERATED_COMMIT_C})
add_dependencies(utils cmake_commit_c)
add_library(logging OBJECT
logging.c)

View File

@ -27,3 +27,4 @@ add_library(charset STATIC
toucs.c
utf8.c
xenc.c)
add_dependencies(charset generated_sbcsdat_c)