1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- # LaGUI CMake config file.
- get_filename_component(SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
- include(${SELF_DIR}/lagui-targets.cmake)
- get_filename_component(LAGUI_INCLUDE_DIRS "${SELF_DIR}/../../include/lagui" ABSOLUTE)
- if (POLICY CMP0072)
- set(OpenGL_GL_PREFERENCE GLVND)
- endif()
- find_package(OpenGL REQUIRED)
- find_package(X11 REQUIRED)
- find_package(Freetype REQUIRED)
- find_package(GLEW REQUIRED)
- find_package(PNG REQUIRED)
- set(LAGUI_SHARED_LIBS
- ${X11_LIBRARIES}
- ${X11_X11_LIB}
- ${GLEW_LIBRARIES}
- ${OPENGL_LIBRARY}
- ${FREETYPE_LIBRARIES}
- ${X11_Xfixes_LIB}
- ${PNG_LIBRARY}
- m X11 Xi Xcursor
- lagui
- CACHE INTERNAL "LaGUI shared libs"
- )
- set(LAGUI_INCLUDE_DIRS_ALL
- ${CMAKE_SOURCE_DIR}
- ${X11_INCLUDE_DIR}
- ${GLEW_INCLUDE_PATH}
- ${FREETYPE_INCLUDE_DIRS}
- ${LAGUI_INCLUDE_DIRS}
- CACHE INTERNAL "Include dirs of LaGUI and dependencies"
- )
- # Build Types
- set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE}
- CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel tnsan asan lsan msan ubsan"
- FORCE)
- # ThreadSanitizer
- set(CMAKE_C_FLAGS_TSAN
- "-fsanitize=thread -g -O1"
- CACHE STRING "Flags used by the C compiler during ThreadSanitizer builds."
- FORCE)
- set(CMAKE_CXX_FLAGS_TSAN
- "-fsanitize=thread -g -O1"
- CACHE STRING "Flags used by the C++ compiler during ThreadSanitizer builds."
- FORCE)
- # AddressSanitize
- set(CMAKE_C_FLAGS_ASAN
- "-fsanitize=address -fno-optimize-sibling-calls -fsanitize-address-use-after-scope -fno-omit-frame-pointer -g"
- CACHE STRING "Flags used by the C compiler during AddressSanitizer builds."
- FORCE)
- set(CMAKE_CXX_FLAGS_ASAN
- "-fsanitize=address -fno-optimize-sibling-calls -fsanitize-address-use-after-scope -fno-omit-frame-pointer -g"
- CACHE STRING "Flags used by the C++ compiler during AddressSanitizer builds."
- FORCE)
- # LeakSanitizer
- set(CMAKE_C_FLAGS_LSAN
- "-fsanitize=leak -fno-omit-frame-pointer -g"
- CACHE STRING "Flags used by the C compiler during LeakSanitizer builds."
- FORCE)
- set(CMAKE_CXX_FLAGS_LSAN
- "-fsanitize=leak -fno-omit-frame-pointer -g"
- CACHE STRING "Flags used by the C++ compiler during LeakSanitizer builds."
- FORCE)
- # MemorySanitizer
- set(CMAKE_C_FLAGS_MSAN
- "-fsanitize=memory -fno-optimize-sibling-calls -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer -g"
- CACHE STRING "Flags used by the C compiler during MemorySanitizer builds."
- FORCE)
- set(CMAKE_CXX_FLAGS_MSAN
- "-fsanitize=memory -fno-optimize-sibling-calls -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer -g"
- CACHE STRING "Flags used by the C++ compiler during MemorySanitizer builds."
- FORCE)
- # UndefinedBehaviour
- set(CMAKE_C_FLAGS_UBSAN
- "-fsanitize=undefined"
- CACHE STRING "Flags used by the C compiler during UndefinedBehaviourSanitizer builds."
- FORCE)
- set(CMAKE_CXX_FLAGS_UBSAN
- "-fsanitize=undefined"
- CACHE STRING "Flags used by the C++ compiler during UndefinedBehaviourSanitizer builds."
- FORCE)
|