diff --git a/VERSION b/VERSION index ad16e77b..94376650 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -a12-119-g3e021f3a6b+1 \ No newline at end of file +a12-120-g66c3c0115f+1 \ No newline at end of file diff --git a/client/clipboards/CMakeLists.txt b/client/clipboards/CMakeLists.txt index 574b0835..e3e077a3 100644 --- a/client/clipboards/CMakeLists.txt +++ b/client/clipboards/CMakeLists.txt @@ -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}) diff --git a/client/fonts/CMakeLists.txt b/client/fonts/CMakeLists.txt index 1a718f26..a92afbaa 100644 --- a/client/fonts/CMakeLists.txt +++ b/client/fonts/CMakeLists.txt @@ -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}) diff --git a/client/renderers/CMakeLists.txt b/client/renderers/CMakeLists.txt index 1abce015..ff7ad109 100644 --- a/client/renderers/CMakeLists.txt +++ b/client/renderers/CMakeLists.txt @@ -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})