Add required include directory to use doc/dio/fixmath libraries

This is used for the fuzz project.
This commit is contained in:
David Capello 2022-03-04 23:53:43 -03:00
parent 31ce326d5b
commit c5ee08e3b5
5 changed files with 13 additions and 3 deletions

View File

@ -1,4 +1,5 @@
# Aseprite Document IO Library
# Copyright (c) 2022 Igara Studio S.A.
# Copyright (c) 2016-2018 David Capello
add_library(dio-lib
@ -15,3 +16,6 @@ target_link_libraries(dio-lib
laf-base
fixmath-lib
doc-lib)
target_include_directories(dio-lib
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)

View File

@ -1,4 +1,4 @@
Copyright (c) 2018-2021 Igara Studio S.A.
Copyright (c) 2018-2022 Igara Studio S.A.
Copyright (c) 2016-2018 David Capello
Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,5 +1,5 @@
# Aseprite Document Library
# Copyright (C) 2020 Igara Studio S.A.
# Copyright (C) 2020-2022 Igara Studio S.A.
# Copyright (C) 2001-2018 David Capello
if(WIN32)
@ -73,3 +73,6 @@ target_link_libraries(doc-lib
laf-gfx
laf-base
fixmath-lib)
target_include_directories(doc-lib
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)

View File

@ -1,4 +1,4 @@
Copyright (c) 2018-2021 Igara Studio S.A.
Copyright (c) 2018-2022 Igara Studio S.A.
Copyright (c) 2001-2018 David Capello
Permission is hereby granted, free of charge, to any person obtaining

View File

@ -6,3 +6,6 @@ add_library(fixmath-lib
target_link_libraries(fixmath-lib
laf-base)
target_include_directories(fixmath-lib
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)