Changeset 446 in 3DVCSoftware for branches/HTM-DEV-0.2-dev/build


Ignore:
Timestamp:
26 May 2013, 16:22:23 (12 years ago)
Author:
tech
Message:

Added missing parts.

Location:
branches/HTM-DEV-0.2-dev/build
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.2-dev/build/linux/app/TAppRenderer/makefile

    r438 r446  
    44# set directories to your wanted values
    55SRC_DIR                         = ../../../../source/App/TAppRenderer
    6 INC_DIR                         = ../../../../source/App
     6INC_DIR                         = ../../../../source/Lib
    77LIB_DIR                         = ../../../../lib
    88BIN_DIR                         = ../../../../bin
  • branches/HTM-DEV-0.2-dev/build/linux/common/makefile.base

    r324 r446  
    4747# default cpp flags for all configurations
    4848#CPPFLAGS          = -Wall -fPIC $(DEFS) -I$(CURDIR)/$(INC_DIR) $(USER_INC_DIRS)
    49 CPPFLAGS          = -fPIC $(DEFS) -I$(CURDIR)/$(INC_DIR) $(USER_INC_DIRS) -Wall -Wshadow -Wno-sign-compare -Werror
     49CPPFLAGS          = -fPIC $(DEFS) $(ADDDEFS) -I$(CURDIR)/$(INC_DIR) $(USER_INC_DIRS) -Wall -Wshadow -Wno-sign-compare -Werror
    5050
    5151##########
  • branches/HTM-DEV-0.2-dev/build/linux/makefile

    r438 r446  
    11### enforce 32-bit build : 1=yes, 0=no
    22M32?= 0
     3HEVC_EXT?= ''
    34 
    45export M32
    56
     7ifneq ($(HEVC_EXT), '')
     8ADDDEFS = -DHEVC_EXT=$(HEVC_EXT)
     9endif
     10
    611all:
    7         $(MAKE) -C lib/TLibVideoIO      MM32=$(M32)
    8         $(MAKE) -C lib/TLibCommon       MM32=$(M32)
    9         $(MAKE) -C lib/TLibDecoder      MM32=$(M32)
    10         $(MAKE) -C lib/TLibEncoder      MM32=$(M32)
    11         $(MAKE) -C lib/TLibRenderer  MM32=$(M32)
    12         $(MAKE) -C lib/TLibExtractor  MM32=$(M32)
    13         $(MAKE) -C lib/TAppCommon       MM32=$(M32)
    14         $(MAKE) -C app/TAppDecoder      MM32=$(M32)
    15         $(MAKE) -C app/TAppEncoder      MM32=$(M32)
    16         $(MAKE) -C app/TAppRenderer     MM32=$(M32)
    17         $(MAKE) -C app/TAppExtractor    MM32=$(M32)
    18         $(MAKE) -C utils/annexBbytecount       MM32=$(M32)
    19         $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32)
     12        $(MAKE) -C lib/TLibVideoIO      MM32=$(M32) ADDDEFS=$(ADDDEFS)
     13        $(MAKE) -C lib/TLibCommon       MM32=$(M32) ADDDEFS=$(ADDDEFS)
     14        $(MAKE) -C lib/TLibDecoder      MM32=$(M32) ADDDEFS=$(ADDDEFS)
     15        $(MAKE) -C lib/TLibEncoder      MM32=$(M32) ADDDEFS=$(ADDDEFS)
     16        $(MAKE) -C lib/TLibRenderer  MM32=$(M32) ADDDEFS=$(ADDDEFS)
     17        $(MAKE) -C lib/TLibExtractor  MM32=$(M32) ADDDEFS=$(ADDDEFS)
     18        $(MAKE) -C lib/TAppCommon       MM32=$(M32) ADDDEFS=$(ADDDEFS)
     19        $(MAKE) -C app/TAppDecoder      MM32=$(M32) ADDDEFS=$(ADDDEFS)
     20        $(MAKE) -C app/TAppEncoder      MM32=$(M32) ADDDEFS=$(ADDDEFS)
     21        $(MAKE) -C app/TAppRenderer     MM32=$(M32) ADDDEFS=$(ADDDEFS)
     22        $(MAKE) -C app/TAppExtractor    MM32=$(M32) ADDDEFS=$(ADDDEFS)
     23        $(MAKE) -C utils/annexBbytecount       MM32=$(M32) ADDDEFS=$(ADDDEFS)
     24        $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32) ADDDEFS=$(ADDDEFS)
    2025
    2126debug:
    22         $(MAKE) -C lib/TLibVideoIO      debug MM32=$(M32)
    23         $(MAKE) -C lib/TLibCommon       debug MM32=$(M32)
    24         $(MAKE) -C lib/TLibDecoder      debug MM32=$(M32)
    25         $(MAKE) -C lib/TLibEncoder      debug MM32=$(M32)
    26         $(MAKE) -C lib/TLibRenderer  debug      MM32=$(M32)
    27         $(MAKE) -C lib/TLibExtractor  debug     MM32=$(M32)
    28         $(MAKE) -C lib/TAppCommon       debug MM32=$(M32)
    29         $(MAKE) -C app/TAppDecoder      debug MM32=$(M32)
    30         $(MAKE) -C app/TAppEncoder      debug MM32=$(M32)
    31         $(MAKE) -C app/TAppRenderer     debug MM32=$(M32)
    32         $(MAKE) -C app/TAppExtractor    debug MM32=$(M32)
    33         $(MAKE) -C utils/annexBbytecount       debug MM32=$(M32)
    34         $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32)
     27        $(MAKE) -C lib/TLibVideoIO      debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     28        $(MAKE) -C lib/TLibCommon       debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     29        $(MAKE) -C lib/TLibDecoder      debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     30        $(MAKE) -C lib/TLibEncoder      debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     31        $(MAKE) -C lib/TLibRenderer  debug      MM32=$(M32) ADDDEFS=$(ADDDEFS)
     32        $(MAKE) -C lib/TLibExtractor  debug     MM32=$(M32) ADDDEFS=$(ADDDEFS)
     33        $(MAKE) -C lib/TAppCommon       debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     34        $(MAKE) -C app/TAppDecoder      debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     35        $(MAKE) -C app/TAppEncoder      debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     36        $(MAKE) -C app/TAppRenderer     debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     37        $(MAKE) -C app/TAppExtractor    debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     38        $(MAKE) -C utils/annexBbytecount       debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
     39        $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32) ADDDEFS=$(ADDDEFS)
    3540
    3641release:
    37         $(MAKE) -C lib/TLibVideoIO      release MM32=$(M32)
    38         $(MAKE) -C lib/TLibCommon       release MM32=$(M32)
    39         $(MAKE) -C lib/TLibDecoder      release MM32=$(M32)
    40         $(MAKE) -C lib/TLibEncoder      release MM32=$(M32)
    41         $(MAKE) -C lib/TLibRenderer  release MM32=$(M32)
    42         $(MAKE) -C lib/TLibExtractor  release MM32=$(M32)
    43         $(MAKE) -C lib/TAppCommon       release MM32=$(M32)
    44         $(MAKE) -C app/TAppDecoder      release MM32=$(M32)
    45         $(MAKE) -C app/TAppEncoder      release MM32=$(M32)
    46         $(MAKE) -C app/TAppRenderer    release MM32=$(M32)     
    47         $(MAKE) -C app/TAppExtractor    release MM32=$(M32)     
    48         $(MAKE) -C utils/annexBbytecount       release MM32=$(M32)
    49         $(MAKE) -C utils/convert_NtoMbit_YCbCr release MM32=$(M32)
     42        $(MAKE) -C lib/TLibVideoIO      release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     43        $(MAKE) -C lib/TLibCommon       release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     44        $(MAKE) -C lib/TLibDecoder      release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     45        $(MAKE) -C lib/TLibEncoder      release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     46        $(MAKE) -C lib/TLibRenderer  release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     47        $(MAKE) -C lib/TLibExtractor  release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     48        $(MAKE) -C lib/TAppCommon       release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     49        $(MAKE) -C app/TAppDecoder      release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     50        $(MAKE) -C app/TAppEncoder      release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     51        $(MAKE) -C app/TAppRenderer    release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     52        $(MAKE) -C app/TAppExtractor    release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     53        $(MAKE) -C utils/annexBbytecount       release MM32=$(M32) ADDDEFS=$(ADDDEFS)
     54        $(MAKE) -C utils/convert_NtoMbit_YCbCr release MM32=$(M32) ADDDEFS=$(ADDDEFS)
    5055
    5156clean:
  • branches/HTM-DEV-0.2-dev/build/vc9/TAppExtractor_vc9.vcproj

    r438 r446  
    4545                                Name="VCCLCompilerTool"
    4646                                Optimization="0"
    47                                 AdditionalIncludeDirectories=""..\..\compat\msvc""
     47                                AdditionalIncludeDirectories="$(SolutionDir)\..\source\Lib\;$(SolutionDir)\..\compat\msvc"
    4848                                PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS"
    4949                                MinimalRebuild="true"
     
    6868                                SubSystem="1"
    6969                                TargetMachine="1"
     70                        />
     71                        <Tool
     72                                Name="VCALinkTool"
     73                        />
     74                        <Tool
     75                                Name="VCManifestTool"
     76                        />
     77                        <Tool
     78                                Name="VCXDCMakeTool"
     79                        />
     80                        <Tool
     81                                Name="VCBscMakeTool"
     82                        />
     83                        <Tool
     84                                Name="VCFxCopTool"
     85                        />
     86                        <Tool
     87                                Name="VCAppVerifierTool"
     88                        />
     89                        <Tool
     90                                Name="VCPostBuildEventTool"
     91                        />
     92                </Configuration>
     93                <Configuration
     94                        Name="Debug|x64"
     95                        OutputDirectory="$(SolutionDir)\..\bin\vc9\$(PlatformName)\$(ConfigurationName)\"
     96                        IntermediateDirectory="$(SolutionDir)\vc9\$(PlatformName)\$(ConfigurationName)\$(RootNamespace)"
     97                        ConfigurationType="1"
     98                        CharacterSet="2"
     99                        >
     100                        <Tool
     101                                Name="VCPreBuildEventTool"
     102                        />
     103                        <Tool
     104                                Name="VCCustomBuildTool"
     105                        />
     106                        <Tool
     107                                Name="VCXMLDataGeneratorTool"
     108                        />
     109                        <Tool
     110                                Name="VCWebServiceProxyGeneratorTool"
     111                        />
     112                        <Tool
     113                                Name="VCMIDLTool"
     114                                TargetEnvironment="3"
     115                        />
     116                        <Tool
     117                                Name="VCCLCompilerTool"
     118                                Optimization="0"
     119                                AdditionalIncludeDirectories="&quot;$(SolutionDir)\source\Lib&quot;;&quot;$(SolutionDir)\..\source\Lib\&quot;;&quot;$(SolutionDir)\..\compat\msvc&quot;"
     120                                PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS"
     121                                MinimalRebuild="true"
     122                                BasicRuntimeChecks="3"
     123                                RuntimeLibrary="1"
     124                                WarningLevel="3"
     125                                DebugInformationFormat="3"
     126                        />
     127                        <Tool
     128                                Name="VCManagedResourceCompilerTool"
     129                        />
     130                        <Tool
     131                                Name="VCResourceCompilerTool"
     132                        />
     133                        <Tool
     134                                Name="VCPreLinkEventTool"
     135                        />
     136                        <Tool
     137                                Name="VCLinkerTool"
     138                                LinkIncremental="2"
     139                                GenerateDebugInformation="true"
     140                                SubSystem="1"
     141                                TargetMachine="17"
    70142                        />
    71143                        <Tool
     
    120192                                EnableIntrinsicFunctions="false"
    121193                                FavorSizeOrSpeed="1"
    122                                 AdditionalIncludeDirectories="&quot;..\..\compat\msvc&quot;"
     194                                AdditionalIncludeDirectories="$(SolutionDir)\..\source\Lib\;$(SolutionDir)\..\compat\msvc"
    123195                                PreprocessorDefinitions="WIN32;_CONSOLE;_CRT_SECURE_NO_WARNINGS"
    124196                                StringPooling="true"
     
    143215                                SubSystem="1"
    144216                                TargetMachine="1"
    145                         />
    146                         <Tool
    147                                 Name="VCALinkTool"
    148                         />
    149                         <Tool
    150                                 Name="VCManifestTool"
    151                         />
    152                         <Tool
    153                                 Name="VCXDCMakeTool"
    154                         />
    155                         <Tool
    156                                 Name="VCBscMakeTool"
    157                         />
    158                         <Tool
    159                                 Name="VCFxCopTool"
    160                         />
    161                         <Tool
    162                                 Name="VCAppVerifierTool"
    163                         />
    164                         <Tool
    165                                 Name="VCPostBuildEventTool"
    166                         />
    167                 </Configuration>
    168                 <Configuration
    169                         Name="Debug|x64"
    170                         OutputDirectory="$(SolutionDir)\..\bin\vc9\$(PlatformName)\$(ConfigurationName)\"
    171                         IntermediateDirectory="$(SolutionDir)\vc9\$(PlatformName)\$(ConfigurationName)\$(RootNamespace)"
    172                         ConfigurationType="1"
    173                         CharacterSet="2"
    174                         >
    175                         <Tool
    176                                 Name="VCPreBuildEventTool"
    177                         />
    178                         <Tool
    179                                 Name="VCCustomBuildTool"
    180                         />
    181                         <Tool
    182                                 Name="VCXMLDataGeneratorTool"
    183                         />
    184                         <Tool
    185                                 Name="VCWebServiceProxyGeneratorTool"
    186                         />
    187                         <Tool
    188                                 Name="VCMIDLTool"
    189                                 TargetEnvironment="3"
    190                         />
    191                         <Tool
    192                                 Name="VCCLCompilerTool"
    193                                 Optimization="0"
    194                                 PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS"
    195                                 AdditionalIncludeDirectories="&quot;..\..\compat\msvc&quot;"
    196                                 MinimalRebuild="true"
    197                                 BasicRuntimeChecks="3"
    198                                 RuntimeLibrary="1"
    199                                 WarningLevel="3"
    200                                 DebugInformationFormat="3"
    201                         />
    202                         <Tool
    203                                 Name="VCManagedResourceCompilerTool"
    204                         />
    205                         <Tool
    206                                 Name="VCResourceCompilerTool"
    207                         />
    208                         <Tool
    209                                 Name="VCPreLinkEventTool"
    210                         />
    211                         <Tool
    212                                 Name="VCLinkerTool"
    213                                 LinkIncremental="2"
    214                                 GenerateDebugInformation="true"
    215                                 SubSystem="1"
    216                                 TargetMachine="17"
    217217                        />
    218218                        <Tool
     
    268268                                EnableIntrinsicFunctions="false"
    269269                                FavorSizeOrSpeed="1"
     270                                AdditionalIncludeDirectories="$(SolutionDir)\..\source\Lib\;$(SolutionDir)\..\compat\msvc"
    270271                                PreprocessorDefinitions="WIN32;_CONSOLE;_CRT_SECURE_NO_WARNINGS"
    271                                 AdditionalIncludeDirectories="&quot;..\..\compat\msvc&quot;"
    272272                                StringPooling="true"
    273273                                RuntimeLibrary="0"
Note: See TracChangeset for help on using the changeset viewer.