diff options
Diffstat (limited to 'buildtools/lib/parsers/qmake')
-rw-r--r-- | buildtools/lib/parsers/qmake/CMakeLists.txt | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/Mainpage.dox | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/Makefile.am | 4 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmake.ll | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmake.yy | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmake_lex.cpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmake_yacc.hpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmakeast.cpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmakeast.h | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmakeastvisitor.cpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmakeastvisitor.h | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmakedriver.cpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/qmakedriver.h | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/tests/runner.cpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/tests/viewer.cpp | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/tests/viewer.h | 2 | ||||
-rw-r--r-- | buildtools/lib/parsers/qmake/tests/viewer_main.cpp | 2 |
17 files changed, 18 insertions, 18 deletions
diff --git a/buildtools/lib/parsers/qmake/CMakeLists.txt b/buildtools/lib/parsers/qmake/CMakeLists.txt index 00898d3c..73296c7b 100644 --- a/buildtools/lib/parsers/qmake/CMakeLists.txt +++ b/buildtools/lib/parsers/qmake/CMakeLists.txt @@ -24,7 +24,7 @@ link_directories( install( FILES qmakeast.h qmakedriver.h qmakeastvisitor.h - DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/buildtools/parsers/qmake ) + DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/buildtools/parsers/qmake ) ##### kdevqmakeparser (shared) ################## diff --git a/buildtools/lib/parsers/qmake/Mainpage.dox b/buildtools/lib/parsers/qmake/Mainpage.dox index 7b2e2682..82270be0 100644 --- a/buildtools/lib/parsers/qmake/Mainpage.dox +++ b/buildtools/lib/parsers/qmake/Mainpage.dox @@ -5,7 +5,7 @@ This library contains qmake parser. <b>Link with</b>: -lkdevqmakeparser -<b>Include path</b>: -I\$(kde_includes)/kdevelop/buildtools/parsers/qmake +<b>Include path</b>: -I\$(kde_includes)/tdevelop/buildtools/parsers/qmake \section qmakeparseroverview Overview Here resides a parser for qmake .pro (.pri) files. This parser diff --git a/buildtools/lib/parsers/qmake/Makefile.am b/buildtools/lib/parsers/qmake/Makefile.am index ac6f9ea5..8dde1ed2 100644 --- a/buildtools/lib/parsers/qmake/Makefile.am +++ b/buildtools/lib/parsers/qmake/Makefile.am @@ -13,8 +13,8 @@ libkdevqmakeparser_la_LDFLAGS = -no-undefined $(all_libraries) $(LIB_KIO) libkdevqmakeparser_la_SOURCES = qmake_lex.cpp qmake_yacc.cpp qmakeast.cpp \ qmakeastvisitor.cpp qmakedriver.cpp -kdevelopbuildtoolsincludedir = $(includedir)/kdevelop/buildtools/parsers/qmake -kdevelopbuildtoolsinclude_HEADERS = qmakeast.h qmakedriver.h qmakeastvisitor.h +tdevelopbuildtoolsincludedir = $(includedir)/tdevelop/buildtools/parsers/qmake +tdevelopbuildtoolsinclude_HEADERS = qmakeast.h qmakedriver.h qmakeastvisitor.h parser: cd $(srcdir) ; \ diff --git a/buildtools/lib/parsers/qmake/qmake.ll b/buildtools/lib/parsers/qmake/qmake.ll index a0289f6e..9ed90e23 100644 --- a/buildtools/lib/parsers/qmake/qmake.ll +++ b/buildtools/lib/parsers/qmake/qmake.ll @@ -1,7 +1,7 @@ %{ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmake.yy b/buildtools/lib/parsers/qmake/qmake.yy index e11c086d..991f1eee 100644 --- a/buildtools/lib/parsers/qmake/qmake.yy +++ b/buildtools/lib/parsers/qmake/qmake.yy @@ -1,7 +1,7 @@ %{ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * Copyright (C) 2006 by Andreas Pakulat * * apaku@gmx.de * * * diff --git a/buildtools/lib/parsers/qmake/qmake_lex.cpp b/buildtools/lib/parsers/qmake/qmake_lex.cpp index 4d74571c..0151bf29 100644 --- a/buildtools/lib/parsers/qmake/qmake_lex.cpp +++ b/buildtools/lib/parsers/qmake/qmake_lex.cpp @@ -604,7 +604,7 @@ static yyconst flex_int16_t yy_rule_linenum[23] = #line 2 "qmake.ll" /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmake_yacc.hpp b/buildtools/lib/parsers/qmake/qmake_yacc.hpp index 6b810683..fed15b11 100644 --- a/buildtools/lib/parsers/qmake/qmake_yacc.hpp +++ b/buildtools/lib/parsers/qmake/qmake_yacc.hpp @@ -52,7 +52,7 @@ namespace TQMake /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * Copyright (C) 2006 by Andreas Pakulat * * apaku@gmx.de * * * diff --git a/buildtools/lib/parsers/qmake/qmakeast.cpp b/buildtools/lib/parsers/qmake/qmakeast.cpp index 2c1e5a53..5f55af4b 100644 --- a/buildtools/lib/parsers/qmake/qmakeast.cpp +++ b/buildtools/lib/parsers/qmake/qmakeast.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakeast.h b/buildtools/lib/parsers/qmake/qmakeast.h index e2abba70..a0c5c1de 100644 --- a/buildtools/lib/parsers/qmake/qmakeast.h +++ b/buildtools/lib/parsers/qmake/qmakeast.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp b/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp index b9470bd9..b733a880 100644 --- a/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp +++ b/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakeastvisitor.h b/buildtools/lib/parsers/qmake/qmakeastvisitor.h index 6978074c..87be089f 100644 --- a/buildtools/lib/parsers/qmake/qmakeastvisitor.h +++ b/buildtools/lib/parsers/qmake/qmakeastvisitor.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakedriver.cpp b/buildtools/lib/parsers/qmake/qmakedriver.cpp index 09256178..21023017 100644 --- a/buildtools/lib/parsers/qmake/qmakedriver.cpp +++ b/buildtools/lib/parsers/qmake/qmakedriver.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakedriver.h b/buildtools/lib/parsers/qmake/qmakedriver.h index ee56f388..62539147 100644 --- a/buildtools/lib/parsers/qmake/qmakedriver.h +++ b/buildtools/lib/parsers/qmake/qmakedriver.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/runner.cpp b/buildtools/lib/parsers/qmake/tests/runner.cpp index 9af86fe7..378ebbed 100644 --- a/buildtools/lib/parsers/qmake/tests/runner.cpp +++ b/buildtools/lib/parsers/qmake/tests/runner.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/viewer.cpp b/buildtools/lib/parsers/qmake/tests/viewer.cpp index 94bf8ac2..eef16513 100644 --- a/buildtools/lib/parsers/qmake/tests/viewer.cpp +++ b/buildtools/lib/parsers/qmake/tests/viewer.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/viewer.h b/buildtools/lib/parsers/qmake/tests/viewer.h index 29e8474f..560c9845 100644 --- a/buildtools/lib/parsers/qmake/tests/viewer.h +++ b/buildtools/lib/parsers/qmake/tests/viewer.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/viewer_main.cpp b/buildtools/lib/parsers/qmake/tests/viewer_main.cpp index 199b106d..201837e3 100644 --- a/buildtools/lib/parsers/qmake/tests/viewer_main.cpp +++ b/buildtools/lib/parsers/qmake/tests/viewer_main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * |