From e51730e6fcb37cb827d248dfd390c8547939f2bd Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Tue, 30 Aug 2022 18:27:46 -0700 Subject: [PATCH] CMake missing rc for tex tools --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc0a3e8..dddb062 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -222,18 +222,22 @@ if(BUILD_TOOLS AND WIN32 AND (NOT WINDOWS_STORE)) add_executable(texassemble Texassemble/texassemble.cpp + Texassemble/texassemble.rc Texassemble/AnimatedGif.cpp) target_link_libraries(texassemble ${PROJECT_NAME} ole32.lib version.lib) source_group(texassemble REGULAR_EXPRESSION Texassemble/*.*) add_executable(texconv Texconv/texconv.cpp + Texconv/texconv.rc Texconv/ExtendedBMP.cpp Texconv/PortablePixMap.cpp) target_link_libraries(texconv ${PROJECT_NAME} ole32.lib shell32.lib version.lib) source_group(texconv REGULAR_EXPRESSION Texconv/*.*) - add_executable(texdiag Texdiag/texdiag.cpp) + add_executable(texdiag + Texdiag/texdiag.cpp + Texdiag/texdiag.rc) target_link_libraries(texdiag ${PROJECT_NAME} ole32.lib version.lib) source_group(texdiag REGULAR_EXPRESSION Texdiag/*.*)