Don't hardcode compilers and linker

This commit is contained in:
blankie 2023-02-26 00:22:19 +07:00
parent a7faa81739
commit 562aa7e643
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 0 additions and 5 deletions

View File

@ -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)
## ---------------------------------------------------------------------