remove old build files, added tests directory
This commit is contained in:
parent
c069b063d3
commit
50e6eec7b1
|
|
@ -1,74 +0,0 @@
|
||||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.0)
|
|
||||||
|
|
||||||
project(QAMQP)
|
|
||||||
|
|
||||||
include(FindPkgConfig)
|
|
||||||
include(GNUInstallDirs)
|
|
||||||
|
|
||||||
set(CMAKE_AUTOMOC ON)
|
|
||||||
set(SRC_DIR ${QAMQP_SOURCE_DIR}/src)
|
|
||||||
set(QAMQP_DIR ${SRC_DIR}/qamqp)
|
|
||||||
|
|
||||||
# to pick up Qt5 macros
|
|
||||||
find_package(Qt5Core)
|
|
||||||
|
|
||||||
set(libqamqp_HEADERS
|
|
||||||
${QAMQP_DIR}/amqp_authenticator.h
|
|
||||||
${QAMQP_DIR}/amqp_channel.h
|
|
||||||
${QAMQP_DIR}/amqp_channel_p.h
|
|
||||||
${QAMQP_DIR}/amqp_connection.h
|
|
||||||
${QAMQP_DIR}/amqp_connection_p.h
|
|
||||||
${QAMQP_DIR}/amqp_exchange.h
|
|
||||||
${QAMQP_DIR}/amqp_exchange_p.h
|
|
||||||
${QAMQP_DIR}/amqp_frame.h
|
|
||||||
${QAMQP_DIR}/amqp_global.h
|
|
||||||
${QAMQP_DIR}/amqp.h
|
|
||||||
${QAMQP_DIR}/amqp_message.h
|
|
||||||
${QAMQP_DIR}/amqp_p.h
|
|
||||||
${QAMQP_DIR}/amqp_network.h
|
|
||||||
${QAMQP_DIR}/amqp_queue.h
|
|
||||||
${QAMQP_DIR}/amqp_queue_p.h
|
|
||||||
)
|
|
||||||
set(libqamqp_SOURCES
|
|
||||||
${libqamqp_HEADERS}
|
|
||||||
${QAMQP_DIR}/amqp_authenticator.cpp
|
|
||||||
${QAMQP_DIR}/amqp_channel.cpp
|
|
||||||
${QAMQP_DIR}/amqp_connection.cpp
|
|
||||||
${QAMQP_DIR}/amqp.cpp
|
|
||||||
${QAMQP_DIR}/amqp_exchange.cpp
|
|
||||||
${QAMQP_DIR}/amqp_frame.cpp
|
|
||||||
${QAMQP_DIR}/amqp_network.cpp
|
|
||||||
${QAMQP_DIR}/amqp_queue.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
set(test_client_SOURCES
|
|
||||||
${SRC_DIR}/main.cpp
|
|
||||||
${SRC_DIR}/QamqpApp.h
|
|
||||||
${SRC_DIR}/pubsub/EmitLog.h
|
|
||||||
${SRC_DIR}/pubsub/ReceiveLog.h
|
|
||||||
${SRC_DIR}/routing/EmitLogDirect.h
|
|
||||||
${SRC_DIR}/routing/ReceiveLogDirect.h
|
|
||||||
${SRC_DIR}/sendreceive/Send.h
|
|
||||||
${SRC_DIR}/sendreceive/Receive.h
|
|
||||||
${SRC_DIR}/workqueues/NewTask.h
|
|
||||||
${SRC_DIR}/workqueues/Worker.h
|
|
||||||
)
|
|
||||||
|
|
||||||
include_directories(${SRC_DIR})
|
|
||||||
link_directories(${QAMQP_BINARY_DIR})
|
|
||||||
|
|
||||||
add_library(qamqp SHARED ${libqamqp_SOURCES})
|
|
||||||
set_target_properties(qamqp PROPERTIES SOVERSION 0.2.0)
|
|
||||||
qt5_use_modules(qamqp Core Network)
|
|
||||||
|
|
||||||
|
|
||||||
add_executable(qamqp-test ${test_client_SOURCES})
|
|
||||||
target_link_libraries(qamqp-test qamqp)
|
|
||||||
qt5_use_modules(qamqp-test Core Network)
|
|
||||||
|
|
||||||
install(TARGETS qamqp-test qamqp
|
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
||||||
|
|
||||||
install(FILES ${libqamqp_HEADERS}
|
|
||||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/qamqp)
|
|
||||||
20
QAMQP.sln
20
QAMQP.sln
|
|
@ -1,20 +0,0 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
|
||||||
# Visual Studio 2008
|
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QAMQP", "QAMQP.vcproj", "{479207E5-BC66-4954-A7E9-AE8DA7F2D7B9}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Win32 = Debug|Win32
|
|
||||||
Release|Win32 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{479207E5-BC66-4954-A7E9-AE8DA7F2D7B9}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
||||||
{479207E5-BC66-4954-A7E9-AE8DA7F2D7B9}.Debug|Win32.Build.0 = Debug|Win32
|
|
||||||
{479207E5-BC66-4954-A7E9-AE8DA7F2D7B9}.Release|Win32.ActiveCfg = Release|Win32
|
|
||||||
{479207E5-BC66-4954-A7E9-AE8DA7F2D7B9}.Release|Win32.Build.0 = Release|Win32
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
||||||
664
QAMQP.vcproj
664
QAMQP.vcproj
|
|
@ -1,664 +0,0 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
|
||||||
<VisualStudioProject
|
|
||||||
ProjectType="Visual C++"
|
|
||||||
Version="9,00"
|
|
||||||
Name="QAMQP"
|
|
||||||
ProjectGUID="{479207E5-BC66-4954-A7E9-AE8DA7F2D7B9}"
|
|
||||||
RootNamespace="QAMQP"
|
|
||||||
Keyword="Qt4VSv1.0"
|
|
||||||
TargetFrameworkVersion="0"
|
|
||||||
>
|
|
||||||
<Platforms>
|
|
||||||
<Platform
|
|
||||||
Name="Win32"
|
|
||||||
/>
|
|
||||||
</Platforms>
|
|
||||||
<ToolFiles>
|
|
||||||
</ToolFiles>
|
|
||||||
<Configurations>
|
|
||||||
<Configuration
|
|
||||||
Name="Release|Win32"
|
|
||||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
|
||||||
IntermediateDirectory="$(SolutionDir)$(ConfigurationName)"
|
|
||||||
ConfigurationType="1"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
AdditionalIncludeDirectories=""$(QTDIR)\include";".\GeneratedFiles\$(ConfigurationName)";"$(QTDIR)\include\qtmain";"$(QTDIR)\include\QtCore";"$(QTDIR)\include\QtNetwork""
|
|
||||||
PreprocessorDefinitions=",UNICODE,WIN32,QT_LARGEFILE_SUPPORT;QT_NO_DEBUG,NDEBUG;QT_CORE_LIB;QT_NETWORK_LIB;QT_DLL"
|
|
||||||
RuntimeLibrary="2"
|
|
||||||
TreatWChar_tAsBuiltInType="false"
|
|
||||||
DebugInformationFormat="0"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalDependencies="qtmain.lib QtCore4.lib QtNetwork4.lib"
|
|
||||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
|
||||||
AdditionalLibraryDirectories="$(QTDIR)\lib"
|
|
||||||
GenerateDebugInformation="false"
|
|
||||||
SubSystem="1"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCALinkTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManifestTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXDCMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCBscMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCFxCopTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAppVerifierTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
|
||||||
IntermediateDirectory="$(SolutionDir)$(ConfigurationName)"
|
|
||||||
ConfigurationType="1"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories=""$(QTDIR)\include";".\GeneratedFiles\$(ConfigurationName)";"$(QTDIR)\include\qtmain";"$(QTDIR)\include\QtCore";"$(QTDIR)\include\QtNetwork""
|
|
||||||
PreprocessorDefinitions=",UNICODE,WIN32,QT_LARGEFILE_SUPPORT;QT_CORE_LIB;QT_NETWORK_LIB;QT_DLL"
|
|
||||||
RuntimeLibrary="3"
|
|
||||||
TreatWChar_tAsBuiltInType="false"
|
|
||||||
WarningLevel="3"
|
|
||||||
DebugInformationFormat="3"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalDependencies="qtmaind.lib QtCored4.lib QtNetworkd4.lib"
|
|
||||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
|
||||||
AdditionalLibraryDirectories="$(QTDIR)\lib"
|
|
||||||
GenerateDebugInformation="true"
|
|
||||||
SubSystem="1"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCALinkTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManifestTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXDCMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCBscMakeTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCFxCopTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAppVerifierTool"
|
|
||||||
/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"
|
|
||||||
/>
|
|
||||||
</Configuration>
|
|
||||||
</Configurations>
|
|
||||||
<References>
|
|
||||||
</References>
|
|
||||||
<Files>
|
|
||||||
<Filter
|
|
||||||
Name="Source Files"
|
|
||||||
Filter="cpp;cxx;c;def"
|
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_authenticator.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_channel.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_connection.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_exchange.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_frame.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_network.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_queue.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\main.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\test.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Header Files"
|
|
||||||
Filter="h"
|
|
||||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_authenticator.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_channel.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_channel.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_channel.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_channel_p.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_connection.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_connection.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_connection.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_connection_p.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_exchange.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_exchange.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_exchange.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_exchange_p.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_frame.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_global.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_message.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_network.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_network.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_network.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_p.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\amqp_private.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_queue.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_queue.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\qamqp\amqp_queue.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\qamqp\amqp_queue_p.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\src\test.h"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\test.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"
|
|
||||||
Description="Moc'ing $(InputFileName)..."
|
|
||||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_NETWORK_LIB -DQT_DLL "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\qtmain" "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtNetwork" ".\src\test.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp"
"
|
|
||||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";$(InputPath)"
|
|
||||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_$(InputName).cpp""
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Resource Files"
|
|
||||||
Filter="qrc;*"
|
|
||||||
UniqueIdentifier="{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}"
|
|
||||||
ParseFiles="false"
|
|
||||||
>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Generated Files"
|
|
||||||
Filter="moc;h;cpp"
|
|
||||||
UniqueIdentifier="{71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11}"
|
|
||||||
SourceControlFiles="false"
|
|
||||||
>
|
|
||||||
<Filter
|
|
||||||
Name="Release"
|
|
||||||
Filter="cpp;moc"
|
|
||||||
SourceControlFiles="false"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_amqp.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_amqp_channel.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_amqp_connection.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_amqp_exchange.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_amqp_network.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_amqp_queue.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Release\moc_test.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Debug"
|
|
||||||
Filter="cpp;moc"
|
|
||||||
SourceControlFiles="false"
|
|
||||||
>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_amqp.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_amqp_channel.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_amqp_connection.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_amqp_exchange.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_amqp_network.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_amqp_queue.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\GeneratedFiles\Debug\moc_test.cpp"
|
|
||||||
>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="true"
|
|
||||||
>
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
</Filter>
|
|
||||||
</Files>
|
|
||||||
<Globals>
|
|
||||||
<Global
|
|
||||||
Name="lreleaseOptions"
|
|
||||||
Value=""
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="lupdateOnBuild"
|
|
||||||
Value="0"
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="lupdateOptions"
|
|
||||||
Value=""
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="MocDir"
|
|
||||||
Value=".\GeneratedFiles\$(ConfigurationName)"
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="MocOptions"
|
|
||||||
Value=""
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="QtVersion Win32"
|
|
||||||
Value="$(DefaultQtVersion)"
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="RccDir"
|
|
||||||
Value=".\GeneratedFiles"
|
|
||||||
/>
|
|
||||||
<Global
|
|
||||||
Name="UicDir"
|
|
||||||
Value=".\GeneratedFiles"
|
|
||||||
/>
|
|
||||||
</Globals>
|
|
||||||
</VisualStudioProject>
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
TEMPLATE = subdirs
|
||||||
|
SUBDIRS = \
|
||||||
|
qamqp
|
||||||
Loading…
Reference in New Issue