Skip to content

Commit

Permalink
Move dvp one folder up and update CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Dec 24, 2021
1 parent 00daf58 commit 9ce06a9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ add_executable(${PROJECT_NAME})

# Add key executable block
target_sources(${PROJECT_NAME} PUBLIC
${CMAKE_CURRENT_LIST_DIR}/dev/VisualStudio/main.c
${CMAKE_CURRENT_LIST_DIR}/dev/main.c
${CMAKE_CURRENT_LIST_DIR}/examples/test_code.c
)

# Add key include paths
target_include_directories(${PROJECT_NAME} PUBLIC
${CMAKE_CURRENT_LIST_DIR}/dev/VisualStudio
${CMAKE_CURRENT_LIST_DIR}/dev
)

# Compilation definition information
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions dev/VisualStudio/lwgps_dev.vcxproj → dev/lwgps_dev.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
<IncludePath>.;..\..\lwgps\src\include;$(IncludePath)</IncludePath>
<IncludePath>.;..\lwgps\src\include;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
Expand Down Expand Up @@ -139,8 +139,8 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\examples\test_code.c" />
<ClCompile Include="..\..\lwgps\src\lwgps\lwgps.c" />
<ClCompile Include="..\examples\test_code.c" />
<ClCompile Include="..\lwgps\src\lwgps\lwgps.c" />
<ClCompile Include="main.c" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\lwgps\src\lwgps\lwgps.c">
<ClCompile Include="..\lwgps\src\lwgps\lwgps.c">
<Filter>Source Files\LwGPS</Filter>
</ClCompile>
<ClCompile Include="main.c">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\examples\test_code.c">
<ClCompile Include="..\examples\test_code.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 9ce06a9

Please sign in to comment.