mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-03-15 21:05:37 +00:00
[client] cmake: cosmetics
This commit is contained in:
parent
66c3c0115f
commit
ee09594190
4 changed files with 7 additions and 23 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
a12-119-g3e021f3a6b+1
|
||||
a12-120-g66c3c0115f+1
|
|
@ -39,10 +39,5 @@ foreach(clipboard ${CLIPBOARDS})
|
|||
endforeach()
|
||||
file(APPEND ${CLIPBOARD_C} " NULL\n};\n\n")
|
||||
|
||||
add_library(clipboards STATIC
|
||||
${CLIPBOARD_C}
|
||||
)
|
||||
|
||||
target_link_libraries(clipboards
|
||||
${CLIPBOARDS_LINK}
|
||||
)
|
||||
add_library(clipboards STATIC ${CLIPBOARD_C})
|
||||
target_link_libraries(clipboards ${CLIPBOARDS_LINK})
|
||||
|
|
|
@ -37,10 +37,5 @@ foreach(font ${FONTS})
|
|||
endforeach()
|
||||
file(APPEND ${FONT_C} " NULL\n};\n\n")
|
||||
|
||||
add_library(fonts STATIC
|
||||
${FONT_C}
|
||||
)
|
||||
|
||||
target_link_libraries(fonts
|
||||
${FONTS_LINK}
|
||||
)
|
||||
add_library(fonts STATIC ${FONT_C})
|
||||
target_link_libraries(fonts ${FONTS_LINK})
|
||||
|
|
|
@ -42,11 +42,5 @@ foreach(renderer ${RENDERERS})
|
|||
endforeach()
|
||||
file(APPEND ${RENDERER_C} " NULL\n};")
|
||||
|
||||
|
||||
add_library(renderers STATIC
|
||||
${RENDERER_C}
|
||||
)
|
||||
|
||||
target_link_libraries(renderers
|
||||
${RENDERERS_LINK}
|
||||
)
|
||||
add_library(renderers STATIC ${RENDERER_C})
|
||||
target_link_libraries(renderers ${RENDERERS_LINK})
|
||||
|
|
Loading…
Add table
Reference in a new issue