Click here to Skip to main content
15,892,927 members
Articles / Web Development / HTML

Server Wizard

Rate me:
Please Sign up or sign in to vote.
4.83/5 (6 votes)
1 Feb 2013CPOL7 min read 31.1K   1.9K   33  
A Visual C++ Project Wizard for the fast creation of high performance TCP servers in C++
<?xml version="1.0" encoding="UTF-8"?>
<configurationDescriptor version="79">
  <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
    <logicalFolder name="HeaderFiles"
                   displayName="Header Files"
                   projectFiles="true">
      <itemPath>src/Plateform.h</itemPath>
      <itemPath>src/ResponseHandler.h</itemPath>
      <itemPath>src/ScopedLock.h</itemPath>
      <itemPath>src/StdAfx.h</itemPath>
      <itemPath>src/Symbols.h</itemPath>
      <itemPath>src/TCPSocket.h</itemPath>
      <itemPath>src/TCPSocketEvents.h</itemPath>
      <itemPath>src/TCPSocketImpl.h</itemPath>
      <itemPath>src/TCPSocketInclude.h</itemPath>
      <itemPath>src/linuxcs.h</itemPath>
    </logicalFolder>
    <logicalFolder name="ResourceFiles"
                   displayName="Resource Files"
                   projectFiles="true">
    </logicalFolder>
    <logicalFolder name="SourceFiles"
                   displayName="Source Files"
                   projectFiles="true">
      <itemPath>src/ResponseHandler.cpp</itemPath>
      <itemPath>src/TCPSocket.cpp</itemPath>
      <itemPath>src/TCPSocketImpl_Linux.cpp</itemPath>
      <itemPath>src/linuxcs.cpp</itemPath>
      <itemPath>src/stdafx.cpp</itemPath>
    </logicalFolder>
    <logicalFolder name="TestFiles"
                   displayName="Test Files"
                   projectFiles="false"
                   kind="TEST_LOGICAL_FOLDER">
    </logicalFolder>
    <logicalFolder name="ExternalFiles"
                   displayName="Important Files"
                   projectFiles="false"
                   kind="IMPORTANT_FILES_FOLDER">
      <itemPath>Makefile</itemPath>
    </logicalFolder>
  </logicalFolder>
  <projectmakefile>Makefile</projectmakefile>
  <confs>
    <conf name="Debug" type="2">
      <toolsSet>
        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
        <compilerSet>GNU|GNU</compilerSet>
      </toolsSet>
      <compileType>
        <ccTool>
          <incDir>
            <pElem>../pushframework/include</pElem>
          </incDir>
        </ccTool>
        <linkerTool>
          <output>../output/libtcpsocket.so</output>
          <linkerAddLib>
            <pElem>../output</pElem>
          </linkerAddLib>
          <linkerLibItems>
            <linkerLibProjectItem>
              <makeArtifact PL="../pushframework"
                            CT="2"
                            CN="Debug"
                            AC="true"
                            BL="true"
                            WD="../pushframework"
                            BC="${MAKE}  -f Makefile CONF=Debug"
                            CC="${MAKE}  -f Makefile CONF=Debug clean"
                            OP="../output/libpushframework.so">
              </makeArtifact>
            </linkerLibProjectItem>
          </linkerLibItems>
        </linkerTool>
      </compileType>
    </conf>
    <conf name="Release" type="2">
      <toolsSet>
        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
        <compilerSet>default</compilerSet>
      </toolsSet>
      <compileType>
        <cTool>
          <developmentMode>5</developmentMode>
        </cTool>
        <ccTool>
          <developmentMode>5</developmentMode>
        </ccTool>
        <fortranCompilerTool>
          <developmentMode>5</developmentMode>
        </fortranCompilerTool>
        <asmTool>
          <developmentMode>5</developmentMode>
        </asmTool>
      </compileType>
    </conf>
  </confs>
</configurationDescriptor>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Tunisia Tunisia
Services:
http://www.pushframework.com/?page_id=890

Comments and Discussions