Skip to content
Snippets Groups Projects

Add empty line at the end and remove empty spaces

Merged Raghunandan Netrapalli Madhusudhan requested to merge fix-issues into develop
All threads resolved!
Files
48
+ 11
0
@@ -130,7 +130,18 @@ if(WIN32)
@@ -130,7 +130,18 @@ if(WIN32)
else()
else()
set(CMAKE_INSTALL_PREFIX "/openPASS" CACHE PATH "Destination directory")
set(CMAKE_INSTALL_PREFIX "/openPASS" CACHE PATH "Destination directory")
add_compile_definitions(unix)
add_compile_definitions(unix)
 
if(WITH_ADDRESS_SANITIZER OR WITH_MEMORY_SANITIZER)
 
if(WITH_ADDRESS_SANITIZER)
 
add_compile_options(-fsanitize=address -fno-omit-frame-pointer -fno-optimize-sibling-calls)
 
add_link_options(-fsanitize=address)
 
endif()
 
if(WITH_MEMORY_SANITIZER)
 
add_compile_options(-fsanitize=memory -fno-omit-frame-pointer -fno-optimize-sibling-calls)
 
add_link_options(-fsanitize=memory)
 
endif()
 
else()
add_link_options(LINKER:-z,defs) # fail during link time on undefined references (instead of runtime)
add_link_options(LINKER:-z,defs) # fail during link time on undefined references (instead of runtime)
 
endif()
option(OPENPASS_ADJUST_OUTPUT "Adjust output directory" OFF)
option(OPENPASS_ADJUST_OUTPUT "Adjust output directory" OFF)
endif()
endif()
Loading