From f5b8091ee91b8323b8e2b1044ba8be676f2bfaf4 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 19 Mar 2024 22:56:52 +0100 Subject: Definition Parser now consumes from the new Reader Next steps are to move ParseUtils functionality to DefinitinoEx, sort things into the namespaces in this library, and then prepare it to handle overloading like nlohmann_json does. On the other side, it's time for starshatter::data. --- ArchiveEx/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) (limited to 'ArchiveEx') diff --git a/ArchiveEx/CMakeLists.txt b/ArchiveEx/CMakeLists.txt index a40fcdc..ce17999 100644 --- a/ArchiveEx/CMakeLists.txt +++ b/ArchiveEx/CMakeLists.txt @@ -1,12 +1,10 @@ project(ArchiveEx) - add_library(${PROJECT_NAME} SHARED Archive.cpp) target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(${PROJECT_NAME} PRIVATE Zlib::zlibstatic) install(TARGETS ${PROJECT_NAME} RUNTIME COMPONENT Runtime DESTINATION ${CMAKE_INSTALL_PREFIX}) - add_executable(dat dat.cpp) target_link_libraries(dat PRIVATE ${PROJECT_NAME}) if(WIN32) -- cgit v1.1