From e3a4e5d64efe8c122352d89724b5af818cbbdc34 Mon Sep 17 00:00:00 2001 From: Axel Isouard Date: Sat, 18 Mar 2017 12:48:30 +0100 Subject: [PATCH] README: Add CMake syntax highlighting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ec2344..24527aa 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This repository contains a collection of CMake scripts to help you embed Google's native WebRTC implementation inside your project as simple as this: -``` +```cmake cmake_minimum_required(VERSION 3.3) project(sample) @@ -132,7 +132,7 @@ All you have to do is include the package, then embed the "use file" that will automatically find the required libraries, define the proper compiling flags and include directories. -``` +```cmake find_package(LibWebRTC REQUIRED) include(${LIBWEBRTC_USE_FILE})