mirror of
https://github.com/lifting-bits/sleigh
synced 2026-06-21 13:56:12 +00:00
cmake: Fix typos
This commit is contained in:
+1
-1
@@ -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)
|
||||
|
||||
|
||||
@@ -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 "")
|
||||
|
||||
Reference in New Issue
Block a user