cmake: Fix typos

This commit is contained in:
Alex Cameron
2021-10-10 19:43:51 +11:00
parent cb94fd151b
commit 325f677591
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.18)
project(sleigh
LANGUAGES CXX C
DESCRIPTION "A machine language translation and dissassembly engine")
DESCRIPTION "A machine language translation and disassembly engine")
set(CMAKE_CXX_STANDARD 11)
+2 -2
View File
@@ -5,8 +5,8 @@ function( enable_sanitizers project_name )
option(ENABLE_COVERAGE "Enable coverage reporting for gcc/clang" FALSE)
if(ENABLE_COVERAGE)
target_compile_options( eqsat_project_options INTERFACE --coverage -O0 -g)
target_link_libraries( eqsat_project_options INTERFACE --coverage)
target_compile_options( sleigh_project_options INTERFACE --coverage -O0 -g)
target_link_libraries( sleigh_project_options INTERFACE --coverage)
endif()
set(SANITIZERS "")