yaml-cpp: Delete build debug messages

They pollute the build output.

Upstream PR: https://github.com/jbeder/yaml-cpp/pull/1316

Change-Id: Ib3a72a1c92c878b2b1d18cb95e588dba7b166395
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Orgad Shaneh
2024-08-27 18:45:01 +03:00
committed by Orgad Shaneh
parent 8fbca39c97
commit 4b60312769

View File

@@ -15,11 +15,9 @@
# ifndef YAML_CPP_API # ifndef YAML_CPP_API
# ifdef yaml_cpp_EXPORTS # ifdef yaml_cpp_EXPORTS
/* We are building this library */ /* We are building this library */
# pragma message( "Defining YAML_CPP_API for DLL export" )
# define YAML_CPP_API __declspec(dllexport) # define YAML_CPP_API __declspec(dllexport)
# else # else
/* We are using this library */ /* We are using this library */
# pragma message( "Defining YAML_CPP_API for DLL import" )
# define YAML_CPP_API __declspec(dllimport) # define YAML_CPP_API __declspec(dllimport)
# endif # endif
# endif # endif