1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

sclog: add a 'project' line in CMakeLists.txt.

This causes cmake to stop whinging that there isn't one. More
usefully, by specifying the LANGUAGES keyword as just C (rather than
the default of both C and CXX), the cmake configure step is sped up by
not having to faff about finding a C++ compiler.
This commit is contained in:
Simon Tatham 2022-08-16 18:15:59 +01:00
parent 3198995ef3
commit 83ecb07296

View File

@ -4,6 +4,8 @@
cmake_minimum_required(VERSION 3.5)
project(sclog LANGUAGES C)
find_package(DynamoRIO)
if (NOT DynamoRIO_FOUND)
message(FATAL_ERROR "DynamoRIO not found")