[build] make "common" a static library (part 2/2)

This commit is contained in:
Geoffrey McRae
2019-04-11 11:12:59 +10:00
parent 28b12c85f4
commit d8915dbfc9
29 changed files with 38 additions and 26 deletions

View File

@@ -45,6 +45,7 @@ add_library(renderer_EGL STATIC
target_link_libraries(renderer_EGL
${RENDERER_EGL_PKGCONFIG_LIBRARIES}
lg_common
fonts
)

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "alert.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "texture.h"

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "cursor.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "texture.h"

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "desktop.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "texture.h"

View File

@@ -19,7 +19,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "interface/renderer.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "dynamic/fonts.h"

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "fps.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "texture.h"

View File

@@ -21,7 +21,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "shader.h"
#include "texture.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "ll.h"

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "shader.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include <stdlib.h>

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "splash.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "draw.h"

View File

@@ -18,7 +18,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "texture.h"
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include <stdlib.h>

View File

@@ -13,6 +13,7 @@ add_library(renderer_OpenGL STATIC
target_link_libraries(renderer_OpenGL
${RENDERER_OPENGL_PKGCONFIG_LIBRARIES}
lg_common
decoders
fonts
)

View File

@@ -30,7 +30,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include <GL/glu.h>
#include <GL/glx.h>
#include "debug.h"
#include "common/debug.h"
#include "utils.h"
#include "lg-decoders.h"
#include "dynamic/fonts.h"