Fix merge conflict

This commit is contained in:
jmsgrogan 2022-08-28 14:57:54 +01:00
commit f119c598d3
7 changed files with 31 additions and 2 deletions

View file

@ -1,4 +1,5 @@
add_subdirectory(core) add_subdirectory(core)
add_subdirectory(compiler)
add_subdirectory(compression) add_subdirectory(compression)
add_subdirectory(database) add_subdirectory(database)
add_subdirectory(network) add_subdirectory(network)

View file

@ -0,0 +1,18 @@
list(APPEND compiler_HEADERS
Lexer.h
)
list(APPEND compiler_LIB_INCLUDES
Lexer.cpp
)
add_library(compiler SHARED ${compiler_LIB_INCLUDES} ${compiler_HEADERS})
target_include_directories(compiler PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}"
)
set_target_properties( compiler PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
target_link_libraries( compiler PUBLIC core)
set_property(TARGET compiler PROPERTY FOLDER src)

0
src/compiler/Lexer.cpp Normal file
View file

0
src/compiler/Lexer.h Normal file
View file

View file

@ -13,6 +13,7 @@ list(APPEND image_LIB_INCLUDES
) )
list(APPEND image_LIBS core) list(APPEND image_LIBS core)
list(APPEND image_DEFINES "")
find_package(PNG QUIET) find_package(PNG QUIET)
if(PNG_FOUND) if(PNG_FOUND)
@ -20,12 +21,14 @@ list(APPEND image_LIBS PNG::PNG)
list(APPEND image_LIB_INCLUDES list(APPEND image_LIB_INCLUDES
PngWriterLibPng.cpp PngWriterLibPng.cpp
) )
target_compile_definitions(image PRIVATE HAS_LIBPNG) list(APPEND image_DEFINES HAS_LIBPNG)
else() else()
message(STATUS "LIBRARY CHECK: libPNG not found - disabling libPNG based image i/o.") message(STATUS "LIBRARY CHECK: libPNG not found - disabling libPNG based image i/o.")
endif() endif()
add_library(image SHARED ${image_LIB_INCLUDES} ${image_HEADERS}) add_library(image SHARED ${image_LIB_INCLUDES} ${image_HEADERS})
#target_compile_definitions(image PRIVATE ${image_DEFINES})
target_include_directories(image PUBLIC target_include_directories(image PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}"

View file

@ -11,6 +11,7 @@ list(APPEND TestFiles
audio/TestAudioWriter.cpp audio/TestAudioWriter.cpp
audio/TestMidiReader.cpp audio/TestMidiReader.cpp
core/TestBinaryStream.cpp core/TestBinaryStream.cpp
compiler/TestLexer.cpp
compression/TestStreamCompressor.cpp compression/TestStreamCompressor.cpp
database/TestDatabase.cpp database/TestDatabase.cpp
fonts/TestFontReader.cpp fonts/TestFontReader.cpp
@ -25,8 +26,8 @@ list(APPEND TestFiles
video/TestVideoDecoder.cpp video/TestVideoDecoder.cpp
windows/TestWaylandWindow.cpp windows/TestWaylandWindow.cpp
web/TestMarkdownParser.cpp web/TestMarkdownParser.cpp
web/TestXmlParser.cpp
web/TestSvgWriter.cpp) web/TestSvgWriter.cpp)
web/TestXmlParser.cpp)
find_package(PkgConfig) find_package(PkgConfig)
pkg_check_modules(DBUS dbus-1) pkg_check_modules(DBUS dbus-1)
@ -38,6 +39,7 @@ foreach(TestFile ${TestFiles})
cmake_path(GET TestFileName STEM TestName) cmake_path(GET TestFileName STEM TestName)
add_executable(${TestName} ${TestFile}) add_executable(${TestName} ${TestFile})
target_link_libraries(${TestName} PUBLIC core compression fonts network image publishing video database geometry audio graphics web client test_utils ${DBUS_LIBRARIES}) target_link_libraries(${TestName} PUBLIC core compression fonts network image publishing video database geometry audio graphics web client test_utils ${DBUS_LIBRARIES})
set_property(TARGET ${TestName} PROPERTY FOLDER test) set_property(TARGET ${TestName} PROPERTY FOLDER test)
endforeach() endforeach()

View file

@ -0,0 +1,5 @@
int main(int argc, char** argv)
{
return 0;
}