build solution using cmake command in cmd

I'm trying to run the following lines using command prompt in my source file directory.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
mkdir build_dir
cd build_dir
cmake \
 -D CMAKE_BUILD_TYPE:STRING=DEBUG \
 -D TPL_LAPACK_LIBRARIES:FILEPATH=d:\\hpfem\\hermes\\dependencies\\lib\\lapack.lib \
 -D TPL_BLAS_LIBRARIES:FILEPATH=d:\\hpfem\\hermes\\dependencies\\lib\\blas.lib \
 -D CMAKE_Fortran_FLAGS:STRING="-fPIC" \
 -D Trilinos_ENABLE_ALL_PACKAGES:BOOL=OFF \
 -D Trilinos_ENABLE_Teuchos:BOOL=ON \
 -D Teuchos_ENABLE_TESTS:STRING=OFF \
 -D Teuchos_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_Epetra:BOOL=ON \
 -D Epetra_ENABLE_TESTS:STRING=OFF \
 -D Epetra_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_EpetraExt:BOOL=ON \
 -D EpetraExt_ENABLE_TESTS:STRING=OFF \
 -D EpetraExt_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_AztecOO:BOOL=ON \
 -D AztecOO_ENABLE_TESTS:STRING=OFF \
 -D AztecOO_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_Ifpack:BOOL=ON \
 -D Ifpack_ENABLE_TESTS:STRING=OFF \
 -D Ifpack_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_ML:BOOL=ON \
 -D ML_ENABLE_TESTS:STRING=OFF \
 -D ML_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_OpenMP:BOOL=ON \
 -D Trilinos_ENABLE_Amesos:BOOL=ON \
 -D Amesos_ENABLE_TESTS:STRING=OFF \
 -D Amesos_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_NOX:BOOL=ON \
 -D NOX_ENABLE_TESTS:STRING=OFF \
 -D NOX_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_Anasazi:BOOL=ON \
 -D Anasazi_ENABLE_TESTS:STRING=OFF \
 -D Anasazi_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_Komplex:BOOL=ON \
 -D Komplex_ENABLE_TESTS:STRING=OFF \
 -D Komplex_ENABLE_EXAMPLES:STRING=OFF \
 -D Trilinos_ENABLE_TESTS:BOOL=OFF \
 -D DART_TESTING_TIMEOUT:STRING=600 \
 -D CMAKE_INSTALL_PREFIX:STRING=/d/hpfem/hermes/dependencies \
 ..


I have two problems. I am getting following error while I have CMakeLists.txt in the source directory.

"CMake Error: The source directory "/" does not appear to contain CMakeLists.txt."
"The source directory "/-D" does not exist."

Thanks for your help in advance.
Last edited on
IIRC, you need to remove the space between the -D and the symbol being defined. So:

-DCMAKE_BUILD_TYPE:STRING=DEBUG \

etc.
I tried that but it didn't help. Also It says Cmakelists.txt does not exist while it does.
Last edited on
Should be: CMakelists.txt
I downloaded the latest version of Trilinos here https://github.com/trilinos/Trilinos/releases.
I have Cmakelists.txt in the file directory.
It seems I should write my own CMakelists, but I have no experience in writing that. This is the CMakelists.txt.

# @HEADER
# ************************************************************************
#
#            Trilinos: An Object-Oriented Solver Framework
#                 Copyright (2001) Sandia Corporation
#
#
# Copyright (2001) Sandia Corporation. Under the terms of Contract
# DE-AC04-94AL85000, there is a non-exclusive license for use of this
# work by or on behalf of the U.S. Government.  Export of this program
# may require a license from the United States Government.
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the Corporation nor the names of the
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# NOTICE:  The United States Government is granted for itself and others
# acting on its behalf a paid-up, nonexclusive, irrevocable worldwide
# license in this data to reproduce, prepare derivative works, and
# perform publicly and display publicly.  Beginning five (5) years from
# July 25, 2001, the United States Government is granted for itself and
# others acting on its behalf a paid-up, nonexclusive, irrevocable
# worldwide license in this data to reproduce, prepare derivative works,
# distribute copies to the public, perform publicly and display
# publicly, and to permit others to do so.
#
# NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT
# OF ENERGY, NOR SANDIA CORPORATION, NOR ANY OF THEIR EMPLOYEES, MAKES
# ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR
# RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY
# INFORMATION, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS
# THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS.
#
# ************************************************************************
# @HEADER

#
# A) Define your project name and set up major project options
#

# To be safe, define your minimum CMake version.  This may be newer than the
# min required by TriBITS.
CMAKE_MINIMUM_REQUIRED(VERSION 3.17.0 FATAL_ERROR)

# Must set the project name as a variable at very beginning before including anything else
# We set the project name in a separate file so CTest scripts can use it.
INCLUDE(${CMAKE_CURRENT_LIST_DIR}/ProjectName.cmake)

# CMake requires that you declare the CMake project in the top-level file and
# not in an include file :-(
PROJECT(${PROJECT_NAME} NONE)

## set an env so we know we are in configure
set(ENV{CMAKE_IS_IN_CONFIGURE_MODE} 1)

#
# B) Pull in the TriBITS system and execute
#

INCLUDE(${CMAKE_CURRENT_LIST_DIR}/cmake/tribits/TriBITS.cmake)

# Make Trilinos create <Package>Config.cmake files by default
SET(${PROJECT_NAME}_ENABLE_INSTALL_CMAKE_CONFIG_FILES_DEFAULT ON)
# Make Trilinos set up CPack support by default
SET(${PROJECT_NAME}_ENABLE_CPACK_PACKAGING_DEFAULT ON)
# Don't allow disabled subpackages to be excluded from tarball
SET(${PROJECT_NAME}_EXCLUDE_DISABLED_SUBPACKAGES_FROM_DISTRIBUTION_DEFAULT FALSE)

# Set up C++ language standard selection (rest is handled by TriBITS)
SET(${PROJECT_NAME}_CMAKE_CXX_STANDARD_DEFAULT 14)
SET(${PROJECT_NAME}_CMAKE_CXX_STANDARDS_ALLOWED "(14|17|20)")
ADVANCED_SET(CMAKE_CXX_STANDARD ${${PROJECT_NAME}_CMAKE_CXX_STANDARD_DEFAULT}
  CACHE STRING
  "C++ standard number with values ${${PROJECT_NAME}_CMAKE_CXX_STANDARDS_ALLOWED} (default ${${PROJECT_NAME}_CMAKE_CXX_STANDARD_DEFAULT})")
IF (NOT CMAKE_CXX_STANDARD MATCHES "^${${PROJECT_NAME}_CMAKE_CXX_STANDARDS_ALLOWED}$")
  MESSAGE(FATAL_ERROR
    "CMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD} is not in the allowed set "
    "${${PROJECT_NAME}_CMAKE_CXX_STANDARDS_ALLOWED}")
ENDIF ()
# ToDo: We may want to warn about using a non-default version of C++ but
# really Trilinos should support bulding with every newer C++ standard so we
# should just be doing that instead.

# Force off support for Makefile.export.* files while TriBITS is refactored to
# remove this (#8498)
SET(${PROJECT_NAME}_ENABLE_EXPORT_MAKEFILES OFF CACHE BOOL
  "Support being removed from TriBITS (see trilinos/Trilinos#8498)" FORCE)

# Do all of the processing for this Tribits project
TRIBITS_PROJECT()

INSTALL_BUILD_STATS_SCRIPTS()

# Install TriBITS so that other projects can use it.
ADVANCED_SET(${PROJECT_NAME}_INSTALL_TriBITS ON CACHE BOOL
  "If ture, install TriBITS into <lib-install-dir>/cmake/tribits/")
IF (${PROJECT_NAME}_INSTALL_TriBITS)
  ASSERT_DEFINED(Trilinos_SOURCE_DIR)
  ASSERT_DEFINED(${PROJECT_NAME}_INSTALL_LIB_DIR)
  INSTALL(
    DIRECTORY "${Trilinos_SOURCE_DIR}/cmake/tribits"
    DESTINATION "${${PROJECT_NAME}_INSTALL_LIB_DIR}/cmake"
    PATTERN "*.pyc" EXCLUDE
    )
ENDIF()

IF(${PROJECT_NAME}_ENABLE_YouCompleteMe)
  INCLUDE(CodeCompletion)
ENDIF()

Last edited on
When in directory build_dir, what does ls -l .. show?
Last edited on
total 446
-rw-r--r-- 1 user None   3400 Apr 29 13:09 CMakeLists.txt
-rw-r--r-- 1 user None   4171 Oct 29 22:03 CONTRIBUTING.md
-rw-r--r-- 1 user None   1285 Oct 29 22:03 CTestConfig.cmake
-rw-r--r-- 1 user None   2880 Oct 29 22:03 Copyright.txt
-rw-r--r-- 1 user None     11 Oct 29 22:03 INSTALL
-rw-r--r-- 1 user None   4289 Oct 29 22:03 INSTALL.rst
-rw-r--r-- 1 user None    322 Oct 29 22:03 LICENSE
-rw-r--r-- 1 user None  10585 Oct 29 22:03 PackagesList.cmake
-rw-r--r-- 1 user None    570 Oct 29 22:03 ProjectName.cmake
-rw-r--r-- 1 user None   1459 Oct 29 22:03 README
-rw-r--r-- 1 user None   1747 Oct 29 22:03 README.md
-rw-r--r-- 1 user None 301678 Oct 29 22:03 RELEASE_NOTES
-rw-r--r-- 1 user None   7965 Oct 29 22:03 TPLsList.cmake
-rw-r--r-- 1 user None   3687 Oct 29 22:03 Version.cmake
-rw-r--r-- 1 user None     28 Oct 29 22:03 _config.yml
drwxr-xr-x 1 user None      0 Apr 29 13:03 build_dir
-rw-r--r-- 1 user None     40 Oct 29 22:03 checkin-test.py
-rw-r--r-- 1 user None     45 Oct 29 22:03 clone_extra_repos.py
drwxr-xr-x 1 user None      0 Oct 29 22:03 cmake
drwxr-xr-x 1 user None      0 Oct 29 22:03 commonTools
drwxr-xr-x 1 user None      0 Oct 29 22:03 demos
drwxr-xr-x 1 user None      0 Oct 29 22:03 doc
drwxr-xr-x 1 user None      0 Oct 29 22:03 packages
-rw-r--r-- 1 user None   1675 Oct 29 22:03 project-checkin-test-config.py
drwxr-xr-x 1 user None      0 Oct 29 22:03 sampleScripts
-rwxr-xr-x 1 user None   2113 Oct 29 22:03 sparse_checkout.sh
CMakeLists.txt is the first item. POSIX file names are case sensitive.
I'm sorry but I didn't get what I should do now. You mean cmake should come before CMakeLists.txt?
Last edited on
1
2
3
4
rm -rf build_dir
mkdir build_dir
cd build_dir
cmake <your args> ..


The trailing .. tells cmake that the CMakeLists.txt is in the parent directory.
Thank you.
When I run the commands like
cmake  -DCMAKE_BUILD_TYPE:STRING=DEBUG \
-DTPL_LAPACK_LIBRARIES:FILEPATH=d:\\hpfem\\
hermes\\dependencies\\lib\\lapack.lib \-DTPL_BLAS_LIBRARIES:FILEPATH=d:\\
hpfem\\hermes\\dependencies\\lib\\blas.lib \ -DCMAKE_Fortran_FLAGS:STRING="-fPIC" \ .. 

Then everything is fine. Why the \ front of cmake is a problem?
Last edited on
Those are line continuation characters. They're used by the shell to make all of that one single line.
Topic archived. No new replies allowed.