2eeb682211
Using #define's directly from VCL will report the compiler used to compile VCL, which may be different from the one used for Skia. Also truncate the log file on opening. Change-Id: Iddf613613df20505f1abe1dd5468dcc8c7041410 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97090 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
13 lines
245 B
C++
13 lines
245 B
C++
/*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SKIA_COMPILER_H
|
|
#define SKIA_COMPILER_H
|
|
|
|
#include <include/core/SkTypes.h>
|
|
|
|
SK_API const char* skia_compiler_name();
|
|
|
|
#endif
|