Skip to content

Commit

Permalink
drm: Correctly set CMake target options
Browse files Browse the repository at this point in the history
Fix a typo in the call to set_target_properties(), which makes
libcogplatform-drm.so be built into the expected location, and
also correctly sets it to be compiled as C99.

(cherry picked from commit 0f72c25)
  • Loading branch information
aperezdc committed May 28, 2021
1 parent 5ca67b8 commit 3846ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/drm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ add_library(cogplatform-drm MODULE
kms.c
cursor-drm.c
)
set_target_properties(cogplatform-fdo PROPERTIES
set_target_properties(cogplatform-drm PROPERTIES
C_STANDARD 99
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}
)
Expand Down

0 comments on commit 3846ceb

Please sign in to comment.