Home
last modified time | relevance | path

Searched refs:buildSystem (Results 1 – 25 of 121) sorted by relevance

12345

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmakeprojectmanager/
H A Dqmakenodetreebuilder.cpp145 static void createTree(QmakeBuildSystem *buildSystem, in createTree() argument
186 auto vfs = buildSystem->qmakeVfs(); in createTree()
243 newNode = std::make_unique<QmakeProFileNode>(c->buildSystem(), c->filePath(), pf); in createTree()
246 newNode = std::make_unique<QmakePriFileNode>(c->buildSystem(), node->proFileNode(), in createTree()
250 createTree(buildSystem, c, newNode.get(), toExclude); in createTree()
258 BaseQtVersion *qt = QtKitAspect::qtVersion(buildSystem->kit()); in buildTree()
262 auto root = std::make_unique<QmakeProFileNode>(buildSystem, in buildTree()
263 buildSystem->projectFilePath(), in buildTree()
264 buildSystem->rootProFile()); in buildTree()
265 root->setIcon(iconForProfile(buildSystem->rootProFile())); in buildTree()
[all …]
H A Dqmakenodes.h44 QmakePriFileNode(QmakeBuildSystem *buildSystem, QmakeProFileNode *qmakeProFileNode,
74 …QmakeProFileNode(QmakeBuildSystem *buildSystem, const Utils::FilePath &filePath, QmakeProFile *pf);
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/install/src/
H A DBuildSystem.hs5 buildSystem :: String
6 buildSystem = function
14 isRunFromStack = buildSystem == "stack"
17 isRunFromCabal = buildSystem == "cabal"
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/src/
H A DBuildSystem.hs5 buildSystem :: String
6 buildSystem = function
14 isRunFromStack = buildSystem == "stack"
17 isRunFromCabal = buildSystem == "cabal"
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/nim/project/
H A Dnimbletaskstep.cpp117 auto buildSystem = dynamic_cast<NimbleBuildSystem *>(this->buildSystem()); in createConfigWidget() local
118 QTC_ASSERT(buildSystem, return widget); in createConfigWidget()
125 connect(buildSystem, &NimbleBuildSystem::tasksChanged, this, &NimbleTaskStep::updateTaskList); in createConfigWidget()
137 auto buildSystem = dynamic_cast<NimbleBuildSystem *>(this->buildSystem()); in updateTaskList() local
138 QTC_ASSERT(buildSystem, return); in updateTaskList()
139 const std::vector<NimbleTask> &tasks = buildSystem->tasks(); in updateTaskList()
235 auto nimbleBuildSystem = dynamic_cast<NimbleBuildSystem*>(buildSystem()); in validate()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/android/
H A Dcreateandroidmanifestwizard.cpp110 BuildSystem *buildSystem = wizard->buildSystem(); in ChooseProFilePage() local
111 QString currentBuildKey = buildSystem->target()->activeBuildKey(); in ChooseProFilePage()
114 for (const BuildTargetInfo &bti : buildSystem->applicationTargets()) { in ChooseProFilePage()
196 const BuildTargetInfo bti = m_wizard->buildSystem()->buildTarget(buildKey); in checkPackageSourceDir()
217 const Target *target = m_wizard->buildSystem()->target(); in initializePage()
248 CreateAndroidManifestWizard::CreateAndroidManifestWizard(BuildSystem *buildSystem) in CreateAndroidManifestWizard() argument
249 : m_buildSystem(buildSystem) in CreateAndroidManifestWizard()
253 const QList<BuildTargetInfo> buildTargets = buildSystem->applicationTargets(); in CreateAndroidManifestWizard()
254 QtSupport::BaseQtVersion *version = QtSupport::QtKitAspect::qtVersion(buildSystem->kit()); in CreateAndroidManifestWizard()
355 BuildSystem *CreateAndroidManifestWizard::buildSystem() const in buildSystem() function in Android::Internal::CreateAndroidManifestWizard
H A Dandroidextralibrarylistmodel.cpp44 AndroidExtraLibraryListModel::AndroidExtraLibraryListModel(BuildSystem *buildSystem, in AndroidExtraLibraryListModel() argument
47 m_buildSystem(buildSystem) in AndroidExtraLibraryListModel()
51 connect(buildSystem, &BuildSystem::parsingStarted, in AndroidExtraLibraryListModel()
53 connect(buildSystem, &BuildSystem::parsingFinished, in AndroidExtraLibraryListModel()
57 connect(buildSystem->target(), &Target::activeRunConfigurationChanged, in AndroidExtraLibraryListModel()
H A Dcreateandroidmanifestwizard.h43 CreateAndroidManifestWizard(ProjectExplorer::BuildSystem *buildSystem);
54 ProjectExplorer::BuildSystem *buildSystem() const;
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/ghcide/bench/hist/
H A DMain.hs97 data Config buildSystem = Config
104 buildTool :: buildSystem,
165 benchGhcide samples buildSystem args BenchProject{..} = do
177 [ "--stack" | Stack == buildSystem
181 warmupGhcide buildSystem exePath args example = do function
190 [ "--stack" | Stack == buildSystem
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/ghcide/bench/hist/
H A DMain.hs97 data Config buildSystem = Config
104 buildTool :: buildSystem,
165 benchGhcide samples buildSystem args BenchProject{..} = do
177 [ "--stack" | Stack == buildSystem
181 warmupGhcide buildSystem exePath args example = do function
190 [ "--stack" | Stack == buildSystem
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/cmakeprojectmanager/
H A Dcmakeprojectmanager.h48 void clearCMakeCache(ProjectExplorer::BuildSystem *buildSystem);
49 void runCMake(ProjectExplorer::BuildSystem *buildSystem);
50 void rescanProject(ProjectExplorer::BuildSystem *buildSystem);
H A Dcmakeprojectmanager.cpp157 void CMakeManager::clearCMakeCache(BuildSystem *buildSystem) in clearCMakeCache() argument
159 auto cmakeBuildSystem = dynamic_cast<CMakeBuildSystem *>(buildSystem); in clearCMakeCache()
165 void CMakeManager::runCMake(BuildSystem *buildSystem) in runCMake() argument
167 auto cmakeBuildSystem = dynamic_cast<CMakeBuildSystem *>(buildSystem); in runCMake()
174 void CMakeManager::rescanProject(BuildSystem *buildSystem) in rescanProject() argument
176 auto cmakeBuildSystem = dynamic_cast<CMakeBuildSystem *>(buildSystem); in rescanProject()
259 static_cast<CMakeBuildSystem *>(bc->buildSystem()) in buildFile()
H A Dcmakebuildstep.cpp185 auto *bs = qobject_cast<CMakeBuildSystem *>(buildSystem()); in CMakeBuildStep()
299 auto bs = static_cast<CMakeBuildSystem *>(buildSystem()); in doRun()
303 } else if (buildSystem()->isWaitingForParse()) { in doRun()
396 auto bs = qobject_cast<CMakeBuildSystem*>(buildSystem()); in cmakeCommand()
494 auto bs = qobject_cast<CMakeBuildSystem *>(buildSystem()); in recreateBuildTargetsModel()
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/shake-bench/src/Development/Benchmark/
H A DRules.hs179 data MkBuildRules buildSystem = MkBuildRules
181 findGhc :: buildSystem -> FilePath -> IO FilePath
187 , buildProject :: buildSystem
215 buildSystem <- askOracle $ GetBuildSystem ()
216 buildProject buildSystem [Cwd "."] (takeDirectory out)
217 ghcLoc <- liftIO $ findGhc buildSystem "."
228 buildSystem <- askOracle $ GetBuildSystem ()
230 ghcLoc <- liftIO $ findGhc buildSystem ver
278 buildSystem <- askOracle $ GetBuildSystem ()
304 buildSystem <- askOracle $ GetBuildSystem ()
[all …]
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/shake-bench/src/Development/Benchmark/
H A DRules.hs179 data MkBuildRules buildSystem = MkBuildRules
181 findGhc :: buildSystem -> FilePath -> IO FilePath
187 , buildProject :: buildSystem
215 buildSystem <- askOracle $ GetBuildSystem ()
216 buildProject buildSystem [Cwd "."] (takeDirectory out)
217 ghcLoc <- liftIO $ findGhc buildSystem "."
228 buildSystem <- askOracle $ GetBuildSystem ()
230 ghcLoc <- liftIO $ findGhc buildSystem ver
278 buildSystem <- askOracle $ GetBuildSystem ()
304 buildSystem <- askOracle $ GetBuildSystem ()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/projectexplorer/
H A Dsimpleprojectwizard.cpp79 QString buildSystem() const { return m_buildSystem; } in buildSystem() function in ProjectExplorer::Internal::FilesSelectionWizardPage
155 QString buildSystem() const { return m_secondPage->buildSystem(); } in buildSystem() function in ProjectExplorer::Internal::SimpleProjectWizardDialog
341 if (wizard->buildSystem() == "qmake") in generateFiles()
343 else if (wizard->buildSystem() == "cmake") in generateFiles()
347 *errorMessage = tr("Unknown build system \"%1\"").arg(wizard->buildSystem()); in generateFiles()
H A Dproject.cpp1169 QVERIFY(!project.target->buildSystem()->isParsing()); in testProject_setup()
1170 QVERIFY(!project.target->buildSystem()->hasParsingData()); in testProject_setup()
1201 QVERIFY(project.target->buildSystem()->isParsing()); in testProject_parsingSuccess()
1202 QVERIFY(!project.target->buildSystem()->hasParsingData()); in testProject_parsingSuccess()
1211 QVERIFY(!project.target->buildSystem()->isParsing()); in testProject_parsingSuccess()
1212 QVERIFY(project.target->buildSystem()->hasParsingData()); in testProject_parsingSuccess()
1227 QVERIFY(project.target->buildSystem()->isParsing()); in testProject_parsingFail()
1228 QVERIFY(!project.target->buildSystem()->hasParsingData()); in testProject_parsingFail()
1235 QVERIFY(!project.target->buildSystem()->isParsing()); in testProject_parsingFail()
1236 QVERIFY(!project.target->buildSystem()->hasParsingData()); in testProject_parsingFail()
[all …]
H A Dprojectnodes.cpp921 if (BuildSystem *bs = buildSystem()) in addFiles()
928 if (BuildSystem *bs = buildSystem()) in removeFiles()
935 if (BuildSystem *bs = buildSystem()) in deleteFiles()
942 if (BuildSystem *bs = buildSystem()) in canRenameFile()
949 if (BuildSystem *bs = buildSystem()) in renameFile()
956 if (BuildSystem *bs = buildSystem()) in addDependencies()
963 if (BuildSystem *bs = buildSystem()) in supportsAction()
1001 BuildSystem *ProjectNode::buildSystem() const in buildSystem() function in ProjectExplorer::ProjectNode
1005 return t ? t->buildSystem() : nullptr; in buildSystem()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/tests/system/shared/
H A Dproject.py124 def __handleBuildSystem__(buildSystem): argument
132 if buildSystem is None:
135 test.log("Trying to select build system '%s'" % buildSystem)
136 selectFromCombo(combo, buildSystem)
257 def createProject_Qt_Console(path, projectName, checks = True, buildSystem = None): argument
260 __handleBuildSystem__(buildSystem)
282 buildSystem=None): argument
285 __handleBuildSystem__(buildSystem)
344 def createNewNonQtProject(workingDir, projectName, target, plainC=False, buildSystem="qmake"): argument
353 selectFromCombo("{name='BuildSystem' type='QComboBox' visible='1'}", buildSystem)
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qbsprojectmanager/
H A Dqbsprojectparser.cpp48 QbsProjectParser::QbsProjectParser(QbsBuildSystem *buildSystem, QFutureInterface<bool> *fi) in QbsProjectParser() argument
49 : m_projectFilePath(buildSystem->project()->projectFilePath().toString()), in QbsProjectParser()
50 m_session(buildSystem->session()), in QbsProjectParser()
H A Dqbscleanstep.cpp100 if (buildSystem()->isParsing() || m_session) in init()
111 m_session = static_cast<QbsBuildSystem*>(buildSystem())->session(); in doRun()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/autotest/ctest/
H A Dctesttreeitem.cpp108 const ProjectExplorer::BuildSystem *buildSystem = target->buildSystem(); in testConfigurationsFor() local
112 Utils::CommandLine command = buildSystem->commandLineForTests(selected, options); in testConfigurationsFor()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmlprojectmanager/
H A Dqmlprojectrunconfiguration.cpp213 const QmlBuildSystem *bs = qobject_cast<QmlBuildSystem *>(target()->buildSystem()); in commandLineArguments()
254 const QmlBuildSystem *buildSystem = qobject_cast<QmlBuildSystem *>(target()->buildSystem()); in createQtVersionAspect() local
255 const bool isQt6Project = buildSystem && buildSystem->qt6Project(); in createQtVersionAspect()
/dports/devel/llbuild/swift-llbuild-swift-DEVELOPMENT-SNAPSHOT-2017-12-10-a/lib/BuildSystem/
H A DBuildSystemFrontend.cpp582 buildSystem.emplace(delegate); in initialize()
585 if (!buildSystem->loadDescription(invocation.buildFilePath)) in initialize()
593 delegateImpl->system = buildSystem.getPointer(); in initialize()
598 if (!buildSystem->enableTracing(invocation.traceFilePath, &error)) { in initialize()
619 if (!buildSystem->attachDB(dbPath, &error)) { in initialize()
641 if (!buildSystem.hasValue()) { in build()
656 if (!buildSystem->build(targetToBuild)) in build()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/tests/system/suite_general/tst_create_proj_wizard/
H A Dtest.py129 for counter, buildSystem in enumerate(availableBuildSystems):
130 test.log("Using build system '%s'" % buildSystem)
131 selectFromCombo(combo, buildSystem)

12345