Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flatpak-qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marco Bubke
flatpak-qt-creator
Commits
1575e683
Commit
1575e683
authored
15 years ago
by
Roberto Raggi
Browse files
Options
Downloads
Patches
Plain Diff
Show how to use the preprocessor to generate deps.
parent
caad98ec
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/manual/preprocessor/main.cpp
+81
-10
81 additions, 10 deletions
tests/manual/preprocessor/main.cpp
with
81 additions
and
10 deletions
tests/manual/preprocessor/main.cpp
+
81
−
10
View file @
1575e683
...
@@ -3,25 +3,96 @@
...
@@ -3,25 +3,96 @@
#include
<PreprocessorClient.h>
#include
<PreprocessorClient.h>
#include
<pp.h>
#include
<pp.h>
#include
<QCoreApplication>
#include
<QFile>
#include
<QFile>
#include
<QStringList>
#include
<QDir>
#include
<QtDebug>
#include
<iostream>
#include
<iostream>
using
namespace
CPlusPlus
;
using
namespace
CPlusPlus
;
int
main
()
class
MakeDepend
:
public
Client
{
{
Client
*
client
=
0
;
Environment
*
env
;
Environment
env
;
QList
<
QDir
>
systemDirs
;
Preprocessor
preprocess
(
client
,
&
env
);
public:
MakeDepend
(
Environment
*
env
)
:
env
(
env
)
{
}
void
addSystemDir
(
const
QDir
&
dir
)
{
systemDirs
.
append
(
dir
);
}
void
addSystemDir
(
const
QString
&
path
)
{
systemDirs
.
append
(
QDir
(
path
));
}
virtual
void
macroAdded
(
const
Macro
&
)
{
}
virtual
void
sourceNeeded
(
QString
&
fileName
,
IncludeType
mode
,
unsigned
)
{
if
(
mode
==
IncludeLocal
)
{
// ### cache
const
QFileInfo
currentFile
(
QFile
::
decodeName
(
env
->
currentFile
));
const
QDir
dir
=
currentFile
.
dir
();
QFileInfo
fileInfo
(
dir
,
fileName
);
if
(
fileInfo
.
exists
())
{
fileName
=
fileInfo
.
absoluteFilePath
();
std
::
cout
<<
' '
<<
qPrintable
(
fileName
);
return
;
}
}
QFile
in
;
foreach
(
const
QDir
&
dir
,
systemDirs
)
{
if
(
!
in
.
open
(
stdin
,
QFile
::
ReadOnly
))
QFileInfo
fileInfo
(
dir
,
fileName
);
return
0
;
if
(
fileInfo
.
exists
()
&&
fileInfo
.
isFile
())
{
fileName
=
fileInfo
.
absoluteFilePath
();
std
::
cout
<<
' '
<<
qPrintable
(
fileName
);
return
;
}
}
std
::
cerr
<<
"file '"
<<
qPrintable
(
fileName
)
<<
"' not found"
<<
std
::
endl
;
}
virtual
void
startExpandingMacro
(
unsigned
,
const
Macro
&
,
const
QByteArray
&
,
const
QVector
<
MacroArgumentReference
>
&
)
{
}
virtual
void
stopExpandingMacro
(
unsigned
,
const
Macro
&
)
{
}
virtual
void
startSkippingBlocks
(
unsigned
)
{
}
virtual
void
stopSkippingBlocks
(
unsigned
)
{
}
};
int
main
(
int
argc
,
char
*
argv
[])
{
Environment
env
;
MakeDepend
client
(
&
env
);
c
onst
QByteArray
source
=
in
.
readAll
(
);
c
lient
.
addSystemDir
(
QLatin1String
(
"/usr/include"
)
);
const
QByteArray
preprocessedCode
=
preprocess
(
"<stdin>"
,
source
);
Preprocessor
preproc
(
&
client
,
&
env
);
std
::
cout
<<
preprocessedCode
.
constData
();
for
(
int
i
=
1
;
i
<
argc
;
++
i
)
{
const
QByteArray
fileName
=
argv
[
i
];
std
::
cout
<<
fileName
.
constData
()
<<
':'
;
QFile
file
(
QFile
::
decodeName
(
fileName
));
if
(
file
.
open
(
QFile
::
ReadOnly
))
{
// ### we should QTextStream here.
const
QByteArray
code
=
file
.
readAll
();
preproc
.
preprocess
(
fileName
,
code
,
/*result = */
0
);
}
std
::
cout
<<
std
::
endl
;
}
return
0
;
return
0
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment