Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,782

Downloads of v 0.3.0.1:

1,055

Last Update:

03 Feb 2015

Package Maintainer(s):

Software Author(s):

  • Tim Simpson

Tags:

macaroni c++ cpp lua

Macaroni for C++

  • 1
  • 2
  • 3

0.3.0.1 | Updated: 03 Feb 2015

Downloads:

2,782

Downloads of v 0.3.0.1:

1,055

Maintainer(s):

Software Author(s):

  • Tim Simpson

Macaroni for C++ 0.3.0.1

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Macaroni for C++, run the following command from the command line or from PowerShell:

>

To upgrade Macaroni for C++, run the following command from the command line or from PowerShell:

>

To uninstall Macaroni for C++, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade macaroni -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade macaroni -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install macaroni
  win_chocolatey:
    name: macaroni
    version: '0.3.0.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'macaroni' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.3.0.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller macaroni
{
    Name     = "macaroni"
    Version  = "0.3.0.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'macaroni':
  ensure   => '0.3.0.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator purity on 10 Feb 2015.

Description

Macaroni for C++ parses a sleeker version of C++ that resembles Java or C# and generates C++ code, managing the physical layout of your project for you


tools\Generators\Archive.lua
 
tools\Generators\BoostBuild.lua
 
tools\Generators\BoostBuild2.lua
 
tools\Generators\CMake.lua
 
tools\Generators\Cpp.lua
 
tools\Generators\Cpp\ClassCppFileGenerator.lua
 
tools\Generators\Cpp\ClassFileGenerator.lua
 
tools\Generators\Cpp\ClassHFileGenerator.lua
 
tools\Generators\Cpp\Common.lua
 
tools\Generators\Cpp\CppFileGenerator.lua
 
tools\Generators\Cpp\DependencyList.lua
 
tools\Generators\Cpp\DependencySection.lua
 
tools\Generators\Cpp\EnumFileGenerator.lua
 
tools\Generators\Cpp\FileGenerator.lua
 
tools\Generators\Cpp\FunctionFileGenerator.lua
 
tools\Generators\Cpp\HFileGenerator.lua
 
tools\Generators\Cpp\LibraryConfigGenerator.lua
 
tools\Generators\Cpp\NamespaceFileGenerator.lua
 
tools\Generators\Cpp\NamespaceHFileGenerator.lua
 
tools\Generators\Cpp\NodeFileGenerator.lua
 
tools\Generators\Cpp\NodeInfo.lua
 
tools\Generators\Cpp\TypedefFileGenerator.lua
 
tools\Generators\Cpp\UnitBlockGenerator.lua
 
tools\Generators\Cpp\UnitFileGenerator.lua
 
tools\Generators\Cpp\UnitNodeGenerator.lua
 
tools\Generators\Dumb.lua
 
tools\Generators\HFile.lua
 
tools\Generators\HtmlView.lua
 
tools\Generators\InterfaceMh.lua
 
tools\Generators\Log.lua
 
tools\Generators\LuaGlue.lua
 
tools\Generators\LuaGlue\LuaGlueCppFile.lua
 
tools\Generators\LuaGlue\LuaGlueHFile.lua
 
tools\Generators\LuaGlueTest.lua
 
tools\Generators\Macaroni\MhFileGenerator.lua
 
tools\Generators\Plugin.lua
 
tools\Generators\Porg.lua
 
tools\Generators\Rst.lua
 
tools\Generators\Site.lua
 
tools\Generators\VCpp\VCpp10.lua
 
tools\Generators\VCpp\VCpp9.lua
 
tools\Generators\Wizard.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.42.0\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost-filesystem\1.42.0\manifest-final.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.42.0\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-filesystem\1.42.0\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.46.1\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost-filesystem\1.46.1\manifest-final.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.46.1\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-filesystem\1.46.1\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.49\project-final.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.49\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-filesystem\1.52\project-final.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.52\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-filesystem\1.55\project-final.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.55\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-filesystem\1.57\project-final.lua
 
tools\Libraries\Macaroni\Boost-filesystem\1.57\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-headers\1.46.1\project-final.lua
 
tools\Libraries\Macaroni\Boost-headers\1.46.1\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-headers\1.49\project-final.lua
 
tools\Libraries\Macaroni\Boost-headers\1.49\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-headers\1.51\project-final.lua
 
tools\Libraries\Macaroni\Boost-headers\1.51\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-headers\1.52\project-final.lua
 
tools\Libraries\Macaroni\Boost-headers\1.52\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-headers\1.55\project-final.lua
 
tools\Libraries\Macaroni\Boost-headers\1.55\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-headers\1.57\project-final.lua
 
tools\Libraries\Macaroni\Boost-headers\1.57\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-program_options\1.57\project-final.lua
 
tools\Libraries\Macaroni\Boost-regex\1.42.0\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost-regex\1.42.0\manifest-final.lua
 
tools\Libraries\Macaroni\Boost-regex\1.42.0\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-regex\1.42.0\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost-regex\1.46.1\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost-regex\1.46.1\manifest-final.lua
 
tools\Libraries\Macaroni\Boost-regex\1.46.1\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-regex\1.46.1\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost-regex\1.52\project-final.lua
 
tools\Libraries\Macaroni\Boost-regex\1.52\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-regex\1.55\project-final.lua
 
tools\Libraries\Macaroni\Boost-regex\1.55\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-regex\1.57\project-final.lua
 
tools\Libraries\Macaroni\Boost-regex\1.57\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.42.0\manifest-final.lua
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.42.0\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.42.0\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.46.1\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.46.1\manifest-final.lua
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.46.1\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost-smart_ptr\1.46.1\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost-test_exec_monitor\1.52\project-final.lua
 
tools\Libraries\Macaroni\Boost-test_exec_monitor\1.55\project-final.lua
 
tools\Libraries\Macaroni\Boost-test_exec_monitor\1.57\project-final.lua
 
tools\Libraries\Macaroni\Boost-unit_test_framework\1.52\project-final.lua
 
tools\Libraries\Macaroni\Boost-unit_test_framework\1.55\project-final.lua
 
tools\Libraries\Macaroni\Boost-unit_test_framework\1.57\project-final.lua
 
tools\Libraries\Macaroni\Boost.Config\1.46.1\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost.Config\1.46.1\manifest-final.lua
 
tools\Libraries\Macaroni\Boost.Config\1.46.1\Source\Interface.mh
 
tools\Libraries\Macaroni\Boost.Config\1.46.1\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Boost.Test\1.45.0\Cpp\jamroot.jam
 
tools\Libraries\Macaroni\Boost.Test\1.45.0\manifest-final.lua
 
tools\Libraries\Macaroni\CppStd\2003\manifest-final.lua
 
tools\Libraries\Macaroni\CppStd\2003\project-final.lua
 
tools\Libraries\Macaroni\CppStd\2003\Source\interface.mh
 
tools\Libraries\Macaroni\CppStd\2003\Source\PrepareBoostBuild.lua
 
tools\Libraries\Macaroni\Project-Lua\0\project-final.lua
 
tools\Libraries\Macaroni\Project-Lua\0\src\project-init.lua
 
tools\Libraries\Macaroni\ProjectTemplates\1\project-final.lua
 
tools\Libraries\Macaroni\ProjectTemplates\1\src\SimpleProject.lua
 
tools\Libraries\Macaroni\Windows\1.0.0\project-final.lua
 
tools\Libraries\Macaroni\Windows\1.0.0\src\Interface.mh
 
tools\macaroni.exe
 
tools\Messages.txt
# Messages file for Macaroni.

# C++ Axioms
CppAxioms.AnnotationValueCreation=Character '@' signifies an Annotation value to be attached to the current Node.
CppAxioms.BlockCreation=Keyword "~block" creates a block of code in the current node.
CppAxioms.ClassCreation=Keyword "class" begins or continues classes.
CppAxioms.ConstructorCreation=Name of class without type creates constructor.
CppAxioms.DestructorCreation.TemplateNotAllowed=A template parameter list can't proceed a destructor.
CppAxioms.DestructorCreation=Tilda (~) followed by name of class begins destructor definition.
CppAxioms.EnumCreation=Keyword "enum" begins or continues enumerations.
CppAxioms.FunctionCreation=Function definition encountered.
CppAxioms.NamespaceCreation=Keyword "namespace" begins or continues namespaces.
CppAxioms.NamespaceRoot=The root of the Node system is a Namespace.
CppAxioms.PrimitiveChar=This node is a place holder for the C++ primitive "char."
CppAxioms.PrimitiveDouble=This node is a place holder for the C++ primitive "double."
CppAxioms.PrimitiveFloat=This node is a place holder for the C++ primitive "float."
CppAxioms.PrimitiveSignedInt=This node is a place holder for the C++ primitive "signed int."
CppAxioms.PrimitiveUnsignedInt=This node is a place holder for the C++ primitive "unsigned int."
CppAxioms.PrimitiveVoid=This node is a place holder for the C++ primitive "void."
CppAxioms.SetExistingHFilePath=H File paths can be set using the keyword "~hfile".
CppAxioms.TemplateParameterListCreation=A template parameter list is created by the keyword "template".
CppAxioms.TypedefCreation=Typedef is created by typedef keyword.
CppAxioms.VariableScopeCreation=Variable definition encountered.

# C++ Parser Exception Messages
CppParser.Access.KeyWordSeenTwice=An access keyword was seen twice.
CppParser.Annotation.AnnotationFoundOutsideOfAnyScope=An attribute (or '@' symbol) was found outside of any Node scope.  An attribute must be attached to a Node.
CppParser.Annotation.EndBracketOrSimpleNameExpectedInsideAnnotationTable=Either an ']' or a simple name for a table entry (no "::") was expected inside the attribute table.
CppParser.Annotation.CodeBlockExpectedAfterEquals=A code block was expected right after the equals sign.
CppParser.Annotation.NodeNameExpectedAfterAt=Expected attribute name following '@' symbol.
CppParser.Annotation.TableEntryEqualsExpected=Expected to see '=' following the table entry name ("::" not allowed as a name).
CppParser.Annotation.TableEntryValueExpected=Expected to see a value for the Annotation table entry following the name and '='.
CppParser.Annotation.ValueNoNodeByTheGivenNameFound=It seems as a Node value for an Annotation was specified here, but no Node by that name could be found (are you missing an ~import?).
CppParser.Annotation.ValueExpectedFollowingNodeName=No attribute value was found following the attribute name.
CppParser.Enum.NoID1=Identifier expected following enum keyword.
CppParser.Enum.Size.NoType=Expected to see a type specified for the enum size here.
CppParser.Enum.NoComma=Expected to see a comma seperating enum values.
CppParser.Enum.NoSemicolon=Expected to see a semicolon to end enum definition.
CppParser.Enum.NoStartBrace=Expected to see an opening brace here to start the definition of enum values.
CppParser.Enum.NoValueName=Expected to see the name of an enum value here.
CppParser.Enum.NoValueFollowingEquals=Expected to see an value expression following '=' in enum body.
CppParser.Class.NoID1=Identifier expected following class keyword.
CppParser.Class.NoOpeningBrace=Expected '{' following class signature.
CppParser.Class.NoEndingBrace=Expected '}' at this point to end class definition.
CppParser.Class.Inheritance.NoType=Expected a type to be specified as inheritance parent.
CppParser.CodeBlock.Expected=Expected to see a code block (i.e. "{ blah blah }").
CppParser.Constructor.ArgumentListExpected=Constructor argument list expected here.
CppParser.Constructor.ClassNameExpected=Class name expected following destructor symbol '~'.
CppParser.Expression.CouldNotMatch=Macaroni searched this spot for a generic C++ expression but couldn't find one.
CppParser.Directive.Unknown=Unknown keyword following Macaroni marker "~".
CppParser.Directive.HFileBadArgument=Bad text following "hfile".
CppParser.Directive.HFileFilePathExpected=A file path was expected here.
CppParser.FileNameExpected=Expected a file name surrounded with quotes or ankle brackets.
CppParser.Friend.FriendKeywordOnlyForClasses=Keyword "friend" cannot be used outside of a class.
CppParser.Friend.CouldNotFindNode=Could not find information on type in friend declaration.  Sorry, but friend info must be specified early using either an import or forward reference.
CppParser.Friend.Modifier.Only.For.Globals=The friend modifier only makes sense for ~global members.  A non-global member is always your friend.
CppParser.Friend.MissingSemicolon=Missing semicolon on friend declaration.
CppParser.Function.SemicolonExpected=Semicolon expected following function definition.
CppParser.Global.AllowedForClassesOnly=The global keyword is allowed only within class definitions.
CppParser.GlobalKeyword.ClosingParanthesisExpected=Closing paranthesis expected following home of ~global node.
CppParser.GlobalKeyword.HomeNodeExpected=The home node of the ~global node being defined was expected to be specified following the first paranthesis.
CppParser.Import.NameNotFound=Identifier expected following keyword "import."
CppParser.Import.SemicolonExpected=Expected ';' following import identifier.
CppParser.Operator.InvalidOperator=The text following keyword "operator" does not represent an operator that can be overloaded.
CppParser.Namespace.NoID1=Identifier expected following namespace keyword.
CppParser.Namespace.NoEndingBrace=Syntax error while searching for '}' to complete sandwhich started on line {0}.
CppParser.Namespace.NoOpeningBrace=Syntax error after identifier keyword; expected '{'.
CppParser.Namespace.StatementEof=Expected EOF at this point, after seeing ~namespace and then scope filler.
CppParser.Document.SyntaxError=Syntax error.
CppParser.Function.ExpectedEndingParenthesis=Expected to see ')'.
CppParser.PureVirtual.ExpectedSemicolon=Following equals and zero expected a semicolon to indicate a pure virtual function or the default keyword.
CppParser.PureVirtual.ExpectedZero=Following equals expected to see a zero or default to indicate a pure virtual function or a default constructor.
CppParser.StringLiteralStartExpected=Expected to see the a String literal here.
CppParser.StringLiteralEndingExpected=Expected to see the ending of a String literal.
CppParser.NoExcept.MissingSecondParanthesis=Expected to see end of paranthesis for noexcept specifier here.
CppParser.Template.ExpectedClassOrFunction=Expected a class or function to follow a template parameter list.
CppParser.Template.ExpectedLT=Expected "<" following keyword "template."
CppParser.Template.ExpectedTypenameName=Expected a simple name following "typename" inside a template parameter list.
CppParser.Template.NodeNameNotUnique=The name {0} cannot be used as it was used previously in this template parameter list.
CppParser.Template.ExpectedComma=Expected a comma to extend a parameter list here or '>' to end it.
CppParser.Template.UnexpectedSyntax=Unexpected syntax inside template parameter list (Macaroni may not yet support what you are trying to do).
CppParser.ThrowSpecifier.MissingFirstParanthesis=Expected to see a pair of paranthesis following throw specifier.
CppParser.ThrowSpecifier.MissingSecondParanthesis=Expected to see end of paranthesis for throw specifier here (note: unfortunately Macaroni has not implemented non-empty type specifiers).
CppParser.Type.TypeDefinitionArgumentExpected=Expected to see type definition within ankle brackets.
CppParser.Type.TypeDefinitionCommaOrClosingBracketExpected=Expected to see "," or ">" here.
CppParser.Typedef.NoName=No name was given for typedef following type definition.
CppParser.Typedef.NoSemicolon=No semicolon found for typedef.
CppParser.Typedef.NoTypeDefinitionFound=Did not find a valid type definition following "typedef" keyword.
CppParser.Unit.CppFileNoEquals=Expected to see an equals sign following ~cppfile.
CppParser.Unit.HFileNoEquals=Expected to see an equals sign following ~hfile.
CppParser.Unit.NoID1=Identifier expected following ~unit keyword.
CppParser.Unit.NoLegacy=Cannot define units when in legacy (manifest) mode.
CppParser.Unit.NoEndingBrace=Ending brace expected to close block begun on line {0}.
CppParser.Unit.NoOpeningBrace=Expected an opening brace following the ~unit declaration.
CppParser.Unit.PlatformNoEquals=Missing equals after unit platform keyword.
CppParser.Unit.StatementEof=Expected EOF at line {0}.
CppParser.Unit.TypeNoEquals=Expected to see an equals sign following the ~type.
CppParser.Unit.TypeNoName=Expected to see a name following "~type =".
CppParser.Variable.ConstMaybeBeforeVar=Identifier was expected following keyword "const."
CppParser.Variable.ConstSeenTwice=Identifier was expected following keyword "const."
CppParser.Variable.FriendNotAllowedForArg=Keyword "~friend" is not allowed for function arguments.
CppParser.Variable.GlobalHomeNodeSpecifierMakesNoSenseWhenHidden=Specifying a home node with the ~global keyword doesn't make sense when the acess is ~hidden, because the Node will always be forced into the anonymous namespace of the CPP file.
CppParser.Variable.GlobalNotAllowedForArg=Keyword "~global" is not allowed for function arguments.
CppParser.Variable.InlineNotAllowedForVariable=Keyword "inline" is not allowed for variables.
CppParser.Variable.MustFollowGlobalKeyword=Keyword "global" must be followed by member definition.
CppParser.Variable.NameExpected=Variabler identifier expected.
CppParser.Variable.PublicGlobalStaticMakesNoSense=A public global static does not work; "static" will force the node to be visible on in the compilation block its seen; i.o.w. other entities which might import it and thus include its header file from their C++ files will have linker errors as the node will remain undefined. Consider making this a private static global or a public non-static global.
CppParser.Variable.SemicolonExpected=Expected ';' following variable identifier.
CppParser.Variable.StaticNotAllowedForArg=Keyword "static" is not allowed for function arguments.
CppParser.Variable.TemplateNotAllowed=Template parameter list was seen before what looked like a variable.
CppParser.Variable.UnknownTypeName=Unknown type name for variable.  Are you missing an import statement or forward declaration?
CppParser.Variable.VirtualNotAllowedForArg=Keyword "virtual" not allowed for function arguments.

MacaroniAxioms.Annotation.Definition.Implicit=Annotations may be implicitly defined during use.

LuaGlue.LuaClassWraps=The annotation "Macaroni::Lua::LuaClass" when applied to a class causes that class to be wrapped with another class as Lua glue.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Macaroni for C++ 0.2.3 713 Friday, June 6, 2014 Unknown
Macaroni for C++ 0.2.2 471 Sunday, April 13, 2014 Unknown
Macaroni for C++ 0.2.0 470 Monday, February 24, 2014 Unknown

Adds class and function templates plus support for trailing return types.


Discussion for the Macaroni for C++ Package

Ground Rules:

  • This discussion is only about Macaroni for C++ and the Macaroni for C++ package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Macaroni for C++, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus