Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 152fff2d authored by gsell's avatar gsell
Browse files

unset build type fixed in master CMakeList.txt

parent 7e125b32
No related branches found
No related tags found
No related merge requests found
......@@ -7,14 +7,18 @@ set (OPAL_PACKAGE_BUGREPORT opal@lists.psi.ch)
set (OPAL_PACKAGE_VERSION
${OPAL_MAJOR_VERSION}.${OPAL_MINOR_VERSION}.${OPAL_PATCH_VERSION})
# Select flags.
set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules")
cmake_host_system_information (RESULT HOSTNAME QUERY HOSTNAME)
# Build type
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 -g ")
set (CMAKE_CXX_FLAGS_RELEASE "-O3")
set (CMAKE_CXX_FLAGS_DEBUG "-O0 -g")
set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules")
cmake_host_system_information (RESULT HOSTNAME QUERY HOSTNAME)
if (NOT CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Release)
endif()
message ("Build type is: " ${CMAKE_BUILD_TYPE})
message ("Host OS System: ${CMAKE_HOST_SYSTEM}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment