summaryrefslogtreecommitdiffstats
path: root/googletest/docs/Pkgconfig.md
diff options
context:
space:
mode:
authorArkady Shapkin <arkady.shapkin@gmail.com>2018-09-03 18:56:23 (GMT)
committerArkady Shapkin <arkady.shapkin@gmail.com>2018-09-03 18:56:23 (GMT)
commitde9675986f49becc83626820a6158686240ba30a (patch)
treeb3d82fa59063c8ff1ac0403909378340e4df4149 /googletest/docs/Pkgconfig.md
parentc7a899855656fb0bba2c98ba70bc26333471eb92 (diff)
downloadgoogletest-de9675986f49becc83626820a6158686240ba30a.zip
googletest-de9675986f49becc83626820a6158686240ba30a.tar.gz
googletest-de9675986f49becc83626820a6158686240ba30a.tar.bz2
Update documentation to syntax highlight coderefs/pull/1803/head
Diffstat (limited to 'googletest/docs/Pkgconfig.md')
-rw-r--r--googletest/docs/Pkgconfig.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/Pkgconfig.md b/googletest/docs/Pkgconfig.md
index 9761289..8b4acda 100644
--- a/googletest/docs/Pkgconfig.md
+++ b/googletest/docs/Pkgconfig.md
@@ -19,7 +19,7 @@ all examples here we assume you want to compile the sample
Using `pkg-config` in CMake is fairly easy:
-```
+``` cmake
cmake_minimum_required(VERSION 3.0)
cmake_policy(SET CMP0048 NEW)
@@ -102,7 +102,7 @@ test('first_and_only_test', testapp)
Since `pkg-config` is a small Unix command-line utility, it can be used
in handwritten `Makefile`s too:
-```
+``` Makefile
GTEST_CFLAGS = `pkg-config --cflags gtest_main`
GTEST_LIBS = `pkg-config --libs gtest_main`