Skip to content

Commit 9f76b49

Browse files
committed
some last minute changes
- ifdef network initialization linking for 64-bit - corrected too largument in windows build script shortcuts - added LineEndingConverter sample
1 parent 8147b94 commit 9f76b49

24 files changed

+3300
-180
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set(SAMPLE_NAME "LineEndingConverter")
2+
3+
set(LOCAL_SRCS "")
4+
aux_source_directory(src LOCAL_SRCS)
5+
6+
add_executable( ${SAMPLE_NAME} ${LOCAL_SRCS} )
7+
#set_target_properties( ${SAMPLE_NAME} PROPERTIES COMPILE_FLAGS ${RELEASE_CXX_FLAGS} )
8+
target_link_libraries( ${SAMPLE_NAME} PocoFoundation )
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
vc.project.guid = ${vc.project.guidFromName}
2+
vc.project.name = ${vc.project.baseName}
3+
vc.project.target = ${vc.project.name}
4+
vc.project.type = executable
5+
vc.project.pocobase = ..\\..\\..
6+
vc.project.platforms = Win32, x64
7+
vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md
8+
vc.project.prototype = ${vc.project.name}_vs90.vcproj
9+
vc.project.compiler.include = ..\\..\\..\\Foundation\\include
10+
vc.project.linker.dependencies.Win32 = ws2_32.lib iphlpapi.lib
11+
vc.project.linker.dependencies.x64 = ws2_32.lib iphlpapi.lib

Foundation/samples/LineEndingConverter/LineEndingConverter_vs100.vcxproj

+299
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Header Files">
5+
<UniqueIdentifier>{61e6441a-9d99-405e-a050-f3d02f8564af}</UniqueIdentifier>
6+
</Filter>
7+
<Filter Include="Source Files">
8+
<UniqueIdentifier>{9b2186b9-2a15-476b-9a2c-4b6ae18610a0}</UniqueIdentifier>
9+
</Filter>
10+
</ItemGroup>
11+
<ItemGroup>
12+
<ClCompile Include="src\LineEndingConverter.cpp">
13+
<Filter>Source Files</Filter>
14+
</ClCompile>
15+
</ItemGroup>
16+
</Project>

Foundation/samples/LineEndingConverter/LineEndingConverter_vs110.vcxproj

+305
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Header Files">
5+
<UniqueIdentifier>{b2132eb3-6313-4ef6-93d6-ae2a3c64edc2}</UniqueIdentifier>
6+
</Filter>
7+
<Filter Include="Source Files">
8+
<UniqueIdentifier>{46fa54a5-42c5-4eee-b470-a1bea25b3de0}</UniqueIdentifier>
9+
</Filter>
10+
</ItemGroup>
11+
<ItemGroup>
12+
<ClCompile Include="src\LineEndingConverter.cpp">
13+
<Filter>Source Files</Filter>
14+
</ClCompile>
15+
</ItemGroup>
16+
</Project>

0 commit comments

Comments
 (0)