18 lines
2.1 KiB
XML
18 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project version="4">
|
|
<component name="CopilotDiffPersistence">
|
|
<option name="pendingDiffs">
|
|
<map>
|
|
<entry key="/CMakeLists (snapshot).txt">
|
|
<value>
|
|
<PendingDiffInfo>
|
|
<option name="filePath" value="/CMakeLists (snapshot).txt" />
|
|
<option name="originalContent" value="cmake_minimum_required(VERSION 4.2) project(dynamic_array LANGUAGES C) set(CMAKE_C_STANDARD 11) # Configures Testing Framework include(CTest) add_subdirectory(submodules/external/unity) enable_testing() # Configures the project add_subdirectory(src) # Install the library to a specific directory (e.g., 'lib') relative to the install prefix install(TARGETS dynamic_array LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} # Installs shared libs to <prefix>/lib ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} # Installs static libs to <prefix>/lib RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} # Installs associated executables to <prefix>/bin ) " />
|
|
<option name="updatedContent" value="cmake_minimum_required(VERSION 4.2) project(dynamic_array LANGUAGES C) set(CMAKE_C_STANDARD 11) # Configures Testing Framework include(CTest) # Exclude Unity from default build/install - only needed for tests add_subdirectory(submodules/external/unity EXCLUDE_FROM_ALL) enable_testing() # Configures the project add_subdirectory(src) # Install the library to a specific directory (e.g., 'lib') relative to the install prefix install(TARGETS dynamic_array LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} # Installs shared libs to <prefix>/lib ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} # Installs static libs to <prefix>/lib RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} # Installs associated executables to <prefix>/bin ) " />
|
|
</PendingDiffInfo>
|
|
</value>
|
|
</entry>
|
|
</map>
|
|
</option>
|
|
</component>
|
|
</project> |