Skip to content

Commit

Permalink
cmake: attempt to quell CMP0068 warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 9, 2021
1 parent 677137d commit 8743305
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ set(SDL12COMPAT_SRCS
)
add_library(SDL SHARED ${SDL12COMPAT_SRCS})

if(APPLE)
set_target_properties(SDL PROPERTIES INSTALL_NAME_DIR "")
endif()


include(CheckCSourceCompiles)
include(CheckIncludeFile)
include(CheckCCompilerFlag)
Expand Down

1 comment on commit 8743305

@sezero
Copy link
Contributor

@sezero sezero commented on 8743305 Dec 9, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't help..

Please sign in to comment.