cmake-runner-server/resources/viewCMakeBuildRunner.jsp (34 lines of code) (raw):
<%--
~ Copyright 2000-2013 JetBrains s.r.o.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
--%>
<%@ taglib prefix="props" tagdir="/WEB-INF/tags/props" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<jsp:useBean id="bean" class="jetbrains.buildServer.cmakerunner.server.CMakeBuildBean"/>
<jsp:useBean id="propertiesBean" scope="request" type="jetbrains.buildServer.controllers.BasePropertiesBean"/>
<div class="parameter">
CMake program path (CMAKE_COMMAND):
<strong><props:displayValue name="${bean.cmakeCommandKey}" emptyValue="<default>"/></strong>
</div>
<props:viewWorkingDirectory/>
<%--<div class="parameter">--%>
<%--Path to build directory (contains CMakeCache.txt):--%>
<%--<strong><props:displayValue name="${bean.buildPathKey}" emptyValue="<not specified>"/></strong>--%>
<%--</div>--%>
<div class="parameter">
Build target:
<strong><props:displayValue name="${bean.buildTargetKey}" emptyValue="<not specified>"/></strong>
</div>
<div class="parameter">
Configuration:
<strong><props:displayValue name="${bean.buildConfigurationKey}" emptyValue="<not specified>"/></strong>
</div>
<div class="parameter">
Clean before build:
<strong><props:displayCheckboxValue name="${bean.cleanBeforeBuildKey}"/></strong>
</div>
<div class="parameter">
Native tool command line parameters:
<strong><props:displayValue name="${bean.nativeToolParamsKey}" emptyValue="<not specified>"/></strong>
</div>
<div class="parameter">
Launching Parameters:
<div class="nestedParameter">
<ul style="list-style: none; padding-left: 0; margin-left: 0; margin-top: 0.1em; margin-bottom: 0.1em;">
<li>Redirect stderr into stdout (output will be synchronized): <strong><props:displayCheckboxValue
name="${bean.redirectStderrKey}"/></strong></li>
</ul>
</div>
</div>