Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Unbinilium authored Nov 13, 2022
2 parents fa73b51 + 5e0e84e commit 3109d84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Or you can also use CMake's `FetchContent` to automatically add Metal-cpp librar
include(FetchContent)
FetchContent_Declare(Metal GIT_REPOSITORY https://github.com/Unbinilium/Metal.git GIT_SHALLOW 1)
FetchContent_GetProperties(Metal)
if (NOT Metal_POPULATED)
if(NOT Metal_POPULATED)
FetchContent_MakeAvailable(Metal)
endif()
target_link_libraries(${PROJECT_NAME} PUBLIC Metal)
Expand Down Expand Up @@ -58,7 +58,7 @@ add_executable(${PROJECT_NAME} main.cpp)
include(FetchContent)
FetchContent_Declare(Metal GIT_REPOSITORY https://github.com/Unbinilium/Metal.git GIT_SHALLOW 1)
FetchContent_GetProperties(Metal)
if (NOT Metal_POPULATED)
if(NOT Metal_POPULATED)
FetchContent_MakeAvailable(Metal)
endif()
target_link_libraries(${PROJECT_NAME} PUBLIC Metal)
Expand Down

0 comments on commit 3109d84

Please sign in to comment.