diff options
author | June McEnroe <june@causal.agency> | 2022-01-19 22:02:51 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-19 22:02:51 -0500 |
commit | 91db088feddc115670b5031f37a19e1a11ccc504 (patch) | |
tree | 718b79b7ca0cc5252bbe982c15948ef15878ec6b /CMakeLists.txt | |
parent | Replace build system with cmake (diff) | |
download | wep-91db088feddc115670b5031f37a19e1a11ccc504.tar.gz wep-91db088feddc115670b5031f37a19e1a11ccc504.zip |
Only require C
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 06ae91f..9a40c37 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10) -project(cards) +project(cards C) find_package(SDL2 REQUIRED) |