How to use autoproject to generate c++ project

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












Ran autoproject and got the following:



$ autoproject
What is the program name? hello

Please describe in one line what hello will do:
hello
The main program will be written in what language?
select from: c sh c++ fortran lex yacc awk [c]: c++
What other languages will be used in the package?
select from: c sh c++ fortran lex yacc awk none [none]:
What command line parser generator will be used?
select from: argp autogen clig none [none]: autogen
Please indicate which of the following standard options hello will use:
dry-run? [yN] n
no-warn? [yN] n
output? [yN] n
brief? [yN] n
quiet? [yN] n
verbose? [yN] n
directory? [yN] n
cd? [yN] n
interactive? [yN] n
What is the name of the author? [Parallels]: JBaczuk
What is the email address of the author? [parallels@parallels-vm]: myemail@example.com
Program Name : hello
Description : hello
Version : 0.1.0
Language : c++
Interface : cli
Parser Generator : autogen
Long Options :
Author : JBaczuk
Email-Address : myemail@example.com
Date : August 8, 2018
11 files processed
configure.in not found - either skeleton library was not found,
or requested combination of options is not available
using c++ - adding AC_PROG_CXX to configure.in
awk: cannot open configure.in (No such file or directory)


Here's the generated folder structure:



$ ls -lah hello
total 92K
drwxrwxr-x 2 parallels parallels 4.0K Aug 8 10:32 .
drwxrwxr-x 4 parallels parallels 4.0K Aug 8 10:32 ..
-rw-rw-r-- 1 parallels parallels 30 Aug 8 10:32 AUTHORS
-rw-rw-r-- 1 parallels parallels 72 Aug 8 10:32 ChangeLog
-rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 COPYING
-rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 gpl.texinfo
-rw-rw-r-- 1 parallels parallels 1.7K Aug 8 10:32 hello.1
-rw-rw-r-- 1 parallels parallels 590 Aug 8 10:32 hello.lsm.in
-rw-rw-r-- 1 parallels parallels 1.6K Aug 8 10:32 hello.spec.in
-rw-rw-r-- 1 parallels parallels 5.8K Aug 8 10:32 hello.texinfo
-rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 NEWS
-rw-rw-r-- 1 parallels parallels 796 Aug 8 10:32 README
-rw-rw-r-- 1 parallels parallels 11K Aug 8 10:32 system.h
-rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 tmp


I was expected some c++ source files (at least for the command arg parsing) and the configure.in missing makes me wonder if it's even working. Am I doing something wrong?










share|improve this question

























    up vote
    0
    down vote

    favorite












    Ran autoproject and got the following:



    $ autoproject
    What is the program name? hello

    Please describe in one line what hello will do:
    hello
    The main program will be written in what language?
    select from: c sh c++ fortran lex yacc awk [c]: c++
    What other languages will be used in the package?
    select from: c sh c++ fortran lex yacc awk none [none]:
    What command line parser generator will be used?
    select from: argp autogen clig none [none]: autogen
    Please indicate which of the following standard options hello will use:
    dry-run? [yN] n
    no-warn? [yN] n
    output? [yN] n
    brief? [yN] n
    quiet? [yN] n
    verbose? [yN] n
    directory? [yN] n
    cd? [yN] n
    interactive? [yN] n
    What is the name of the author? [Parallels]: JBaczuk
    What is the email address of the author? [parallels@parallels-vm]: myemail@example.com
    Program Name : hello
    Description : hello
    Version : 0.1.0
    Language : c++
    Interface : cli
    Parser Generator : autogen
    Long Options :
    Author : JBaczuk
    Email-Address : myemail@example.com
    Date : August 8, 2018
    11 files processed
    configure.in not found - either skeleton library was not found,
    or requested combination of options is not available
    using c++ - adding AC_PROG_CXX to configure.in
    awk: cannot open configure.in (No such file or directory)


    Here's the generated folder structure:



    $ ls -lah hello
    total 92K
    drwxrwxr-x 2 parallels parallels 4.0K Aug 8 10:32 .
    drwxrwxr-x 4 parallels parallels 4.0K Aug 8 10:32 ..
    -rw-rw-r-- 1 parallels parallels 30 Aug 8 10:32 AUTHORS
    -rw-rw-r-- 1 parallels parallels 72 Aug 8 10:32 ChangeLog
    -rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 COPYING
    -rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 gpl.texinfo
    -rw-rw-r-- 1 parallels parallels 1.7K Aug 8 10:32 hello.1
    -rw-rw-r-- 1 parallels parallels 590 Aug 8 10:32 hello.lsm.in
    -rw-rw-r-- 1 parallels parallels 1.6K Aug 8 10:32 hello.spec.in
    -rw-rw-r-- 1 parallels parallels 5.8K Aug 8 10:32 hello.texinfo
    -rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 NEWS
    -rw-rw-r-- 1 parallels parallels 796 Aug 8 10:32 README
    -rw-rw-r-- 1 parallels parallels 11K Aug 8 10:32 system.h
    -rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 tmp


    I was expected some c++ source files (at least for the command arg parsing) and the configure.in missing makes me wonder if it's even working. Am I doing something wrong?










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Ran autoproject and got the following:



      $ autoproject
      What is the program name? hello

      Please describe in one line what hello will do:
      hello
      The main program will be written in what language?
      select from: c sh c++ fortran lex yacc awk [c]: c++
      What other languages will be used in the package?
      select from: c sh c++ fortran lex yacc awk none [none]:
      What command line parser generator will be used?
      select from: argp autogen clig none [none]: autogen
      Please indicate which of the following standard options hello will use:
      dry-run? [yN] n
      no-warn? [yN] n
      output? [yN] n
      brief? [yN] n
      quiet? [yN] n
      verbose? [yN] n
      directory? [yN] n
      cd? [yN] n
      interactive? [yN] n
      What is the name of the author? [Parallels]: JBaczuk
      What is the email address of the author? [parallels@parallels-vm]: myemail@example.com
      Program Name : hello
      Description : hello
      Version : 0.1.0
      Language : c++
      Interface : cli
      Parser Generator : autogen
      Long Options :
      Author : JBaczuk
      Email-Address : myemail@example.com
      Date : August 8, 2018
      11 files processed
      configure.in not found - either skeleton library was not found,
      or requested combination of options is not available
      using c++ - adding AC_PROG_CXX to configure.in
      awk: cannot open configure.in (No such file or directory)


      Here's the generated folder structure:



      $ ls -lah hello
      total 92K
      drwxrwxr-x 2 parallels parallels 4.0K Aug 8 10:32 .
      drwxrwxr-x 4 parallels parallels 4.0K Aug 8 10:32 ..
      -rw-rw-r-- 1 parallels parallels 30 Aug 8 10:32 AUTHORS
      -rw-rw-r-- 1 parallels parallels 72 Aug 8 10:32 ChangeLog
      -rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 COPYING
      -rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 gpl.texinfo
      -rw-rw-r-- 1 parallels parallels 1.7K Aug 8 10:32 hello.1
      -rw-rw-r-- 1 parallels parallels 590 Aug 8 10:32 hello.lsm.in
      -rw-rw-r-- 1 parallels parallels 1.6K Aug 8 10:32 hello.spec.in
      -rw-rw-r-- 1 parallels parallels 5.8K Aug 8 10:32 hello.texinfo
      -rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 NEWS
      -rw-rw-r-- 1 parallels parallels 796 Aug 8 10:32 README
      -rw-rw-r-- 1 parallels parallels 11K Aug 8 10:32 system.h
      -rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 tmp


      I was expected some c++ source files (at least for the command arg parsing) and the configure.in missing makes me wonder if it's even working. Am I doing something wrong?










      share|improve this question













      Ran autoproject and got the following:



      $ autoproject
      What is the program name? hello

      Please describe in one line what hello will do:
      hello
      The main program will be written in what language?
      select from: c sh c++ fortran lex yacc awk [c]: c++
      What other languages will be used in the package?
      select from: c sh c++ fortran lex yacc awk none [none]:
      What command line parser generator will be used?
      select from: argp autogen clig none [none]: autogen
      Please indicate which of the following standard options hello will use:
      dry-run? [yN] n
      no-warn? [yN] n
      output? [yN] n
      brief? [yN] n
      quiet? [yN] n
      verbose? [yN] n
      directory? [yN] n
      cd? [yN] n
      interactive? [yN] n
      What is the name of the author? [Parallels]: JBaczuk
      What is the email address of the author? [parallels@parallels-vm]: myemail@example.com
      Program Name : hello
      Description : hello
      Version : 0.1.0
      Language : c++
      Interface : cli
      Parser Generator : autogen
      Long Options :
      Author : JBaczuk
      Email-Address : myemail@example.com
      Date : August 8, 2018
      11 files processed
      configure.in not found - either skeleton library was not found,
      or requested combination of options is not available
      using c++ - adding AC_PROG_CXX to configure.in
      awk: cannot open configure.in (No such file or directory)


      Here's the generated folder structure:



      $ ls -lah hello
      total 92K
      drwxrwxr-x 2 parallels parallels 4.0K Aug 8 10:32 .
      drwxrwxr-x 4 parallels parallels 4.0K Aug 8 10:32 ..
      -rw-rw-r-- 1 parallels parallels 30 Aug 8 10:32 AUTHORS
      -rw-rw-r-- 1 parallels parallels 72 Aug 8 10:32 ChangeLog
      -rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 COPYING
      -rw-rw-r-- 1 parallels parallels 18K Aug 8 10:32 gpl.texinfo
      -rw-rw-r-- 1 parallels parallels 1.7K Aug 8 10:32 hello.1
      -rw-rw-r-- 1 parallels parallels 590 Aug 8 10:32 hello.lsm.in
      -rw-rw-r-- 1 parallels parallels 1.6K Aug 8 10:32 hello.spec.in
      -rw-rw-r-- 1 parallels parallels 5.8K Aug 8 10:32 hello.texinfo
      -rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 NEWS
      -rw-rw-r-- 1 parallels parallels 796 Aug 8 10:32 README
      -rw-rw-r-- 1 parallels parallels 11K Aug 8 10:32 system.h
      -rw-rw-r-- 1 parallels parallels 0 Aug 8 10:32 tmp


      I was expected some c++ source files (at least for the command arg parsing) and the configure.in missing makes me wonder if it's even working. Am I doing something wrong?







      autotools






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 8 at 16:38









      JBaczuk

      1236




      1236

























          active

          oldest

          votes











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f461321%2fhow-to-use-autoproject-to-generate-c-project%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f461321%2fhow-to-use-autoproject-to-generate-c-project%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay