From b637eb28c5012d823bab099db15e44ff8a341170 Mon Sep 17 00:00:00 2001 From: taynpg Date: Sun, 29 Jun 2025 17:22:50 +0800 Subject: [PATCH] print: cmakelist val use. --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7af9b1b..a13b135 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,10 @@ if (MSVC) add_compile_options(/utf-8) endif() +if(DEFINED CMAKE_PREFIX_PATH) +message(STATUS "CMAKE_PREFIX_PATH => ${CMAKE_PREFIX_PATH}.") +endif() + if(CMAKE_CXX_COMPILER_ID MATCHES "GNU" AND CMAKE_SYSTEM_NAME MATCHES "Windows") message(STATUS "frelay use MINGW compiler.") set(COMPILER_USE_MINGW ON) @@ -47,11 +51,14 @@ endif() add_subdirectory(Protocol) add_subdirectory(Server) add_subdirectory(ClientCore) + add_subdirectory(Util) if(DEFINED COMPILE_GUI) +message(STATUS "Support Gui Part => ${COMPILE_GUI}.") add_subdirectory(3rd/SingleApplication-3.5.2) add_subdirectory(Gui) endif() + add_subdirectory(Console) add_subdirectory(Struct) add_subdirectory(Test)