From 562aa7e643a66c9d7a54a0d0ef9b50b1c5253697 Mon Sep 17 00:00:00 2001 From: blankie Date: Sun, 26 Feb 2023 00:22:19 +0700 Subject: [PATCH] Don't hardcode compilers and linker --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8b5cc95..cf34130 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,5 @@ cmake_minimum_required(VERSION 3.25) -# TODO don't hardcode compilers and linker -set(CMAKE_C_COMPILER "clang") -set(CMAKE_CXX_COMPILER "clang++") -add_link_options(-fuse-ld=lld) - project(logmeow CXX) ## ---------------------------------------------------------------------