Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/vsg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,11 @@ if(MSVC)
target_compile_options(vsg PRIVATE "/utf-8")
endif()

# disable extra-qualification warnings with AppleClang
if(CMAKE_SYSTEM_NAME STREQUAL Darwin)
target_compile_options(vsg PUBLIC "-Wno-extra-qualification")
endif()


# place header and source files into group folders to help IDE's present the files in a logical manner
function(ASSIGN_SOURCE_GROUPS GROUP_NAME ROOT_FOLDER)
Expand Down
Loading