├── .default.nix ├── .envrc ├── .gitignore ├── .travis.yml ├── AUTHORS.md ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── autocmake ├── __init__.py ├── configure.py ├── external │ ├── LICENSE-MIT │ ├── __init__.py │ └── docopt.py ├── extract.py ├── generate.py ├── interpolate.py ├── parse_rst.py └── parse_yaml.py ├── compilers ├── Clang.C.cmake ├── Clang.CXX.cmake ├── GNU.C.cmake ├── GNU.CXX.cmake ├── GNU.Fortran.cmake ├── Intel.C.cmake ├── Intel.CXX.cmake ├── Intel.Fortran.cmake ├── PGI.C.cmake ├── PGI.CXX.cmake ├── PGI.Fortran.cmake ├── XL.C.cmake ├── XL.CXX.cmake └── XL.Fortran.cmake ├── doc ├── _static │ └── .gitignore ├── conf.py ├── contributors │ ├── doc.rst │ ├── guidelines.rst │ └── testing.rst ├── developers │ ├── bootstrap.rst │ ├── configuration.rst │ ├── customizing-modules.rst │ ├── example.rst │ ├── faq.rst │ ├── interpolation.rst │ └── updating-modules.rst ├── extract_rst.py ├── general │ ├── about.rst │ ├── help.rst │ └── requirements.rst ├── index.rst └── users │ └── faq.rst ├── example └── autocmake.yml ├── img ├── autocmake.png └── autocmake.svg ├── modules ├── attach-license-header.py ├── cc.cmake ├── ccache.cmake ├── code_coverage.cmake ├── custom_color_messages.cmake ├── cxx.cmake ├── default_build_paths.cmake ├── definitions.cmake ├── export_header.cmake ├── fc.cmake ├── fc_optional.cmake ├── find │ ├── find_include_files.cmake │ └── find_libraries.cmake ├── git_info │ ├── git_info.cmake │ └── git_info.h.in ├── googletest.cmake ├── int64.cmake ├── math │ ├── accelerate.cmake │ ├── acml.cmake │ ├── atlas.cmake │ ├── blas.cmake │ ├── cblas.cmake │ ├── goto.cmake │ ├── lapack.cmake │ └── lapacke.cmake ├── math_libs.cmake ├── mpi.cmake ├── omp.cmake ├── profile.cmake ├── python_interpreter.cmake ├── python_libs.cmake ├── safeguards.cmake ├── save_flags.cmake ├── src.cmake └── version.cmake ├── requirements.txt ├── test ├── cxx │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── cxx_accelerate │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── cxx_cblas │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── extra_cmake_options │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── fc │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ ├── example.f90 │ │ └── module.f90 ├── fc_blas │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.f90 ├── fc_git_info │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.F90 ├── fc_int64 │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.f90 ├── fc_lapack │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.f90 ├── fc_omp │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.f90 ├── python_interpreter │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── python_interpreter_custom │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── python_libs │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp ├── python_libs_custom │ ├── cmake │ │ └── autocmake.yml │ └── src │ │ ├── CMakeLists.txt │ │ └── example.cpp └── test.py └── update.py /.default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/.default.nix -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use nix .default.nix 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/README.md -------------------------------------------------------------------------------- /autocmake/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0" 2 | -------------------------------------------------------------------------------- /autocmake/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/configure.py -------------------------------------------------------------------------------- /autocmake/external/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/external/LICENSE-MIT -------------------------------------------------------------------------------- /autocmake/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/external/__init__.py -------------------------------------------------------------------------------- /autocmake/external/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/external/docopt.py -------------------------------------------------------------------------------- /autocmake/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/extract.py -------------------------------------------------------------------------------- /autocmake/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/generate.py -------------------------------------------------------------------------------- /autocmake/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/interpolate.py -------------------------------------------------------------------------------- /autocmake/parse_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/parse_rst.py -------------------------------------------------------------------------------- /autocmake/parse_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/autocmake/parse_yaml.py -------------------------------------------------------------------------------- /compilers/Clang.C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/Clang.C.cmake -------------------------------------------------------------------------------- /compilers/Clang.CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/Clang.CXX.cmake -------------------------------------------------------------------------------- /compilers/GNU.C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/GNU.C.cmake -------------------------------------------------------------------------------- /compilers/GNU.CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/GNU.CXX.cmake -------------------------------------------------------------------------------- /compilers/GNU.Fortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/GNU.Fortran.cmake -------------------------------------------------------------------------------- /compilers/Intel.C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/Intel.C.cmake -------------------------------------------------------------------------------- /compilers/Intel.CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/Intel.CXX.cmake -------------------------------------------------------------------------------- /compilers/Intel.Fortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/Intel.Fortran.cmake -------------------------------------------------------------------------------- /compilers/PGI.C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/PGI.C.cmake -------------------------------------------------------------------------------- /compilers/PGI.CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/PGI.CXX.cmake -------------------------------------------------------------------------------- /compilers/PGI.Fortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/PGI.Fortran.cmake -------------------------------------------------------------------------------- /compilers/XL.C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/XL.C.cmake -------------------------------------------------------------------------------- /compilers/XL.CXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/XL.CXX.cmake -------------------------------------------------------------------------------- /compilers/XL.Fortran.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/compilers/XL.Fortran.cmake -------------------------------------------------------------------------------- /doc/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contributors/doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/contributors/doc.rst -------------------------------------------------------------------------------- /doc/contributors/guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/contributors/guidelines.rst -------------------------------------------------------------------------------- /doc/contributors/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/contributors/testing.rst -------------------------------------------------------------------------------- /doc/developers/bootstrap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/bootstrap.rst -------------------------------------------------------------------------------- /doc/developers/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/configuration.rst -------------------------------------------------------------------------------- /doc/developers/customizing-modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/customizing-modules.rst -------------------------------------------------------------------------------- /doc/developers/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/example.rst -------------------------------------------------------------------------------- /doc/developers/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/faq.rst -------------------------------------------------------------------------------- /doc/developers/interpolation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/interpolation.rst -------------------------------------------------------------------------------- /doc/developers/updating-modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/developers/updating-modules.rst -------------------------------------------------------------------------------- /doc/extract_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/extract_rst.py -------------------------------------------------------------------------------- /doc/general/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/general/about.rst -------------------------------------------------------------------------------- /doc/general/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/general/help.rst -------------------------------------------------------------------------------- /doc/general/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/general/requirements.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/users/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/doc/users/faq.rst -------------------------------------------------------------------------------- /example/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/example/autocmake.yml -------------------------------------------------------------------------------- /img/autocmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/img/autocmake.png -------------------------------------------------------------------------------- /img/autocmake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/img/autocmake.svg -------------------------------------------------------------------------------- /modules/attach-license-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/attach-license-header.py -------------------------------------------------------------------------------- /modules/cc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/cc.cmake -------------------------------------------------------------------------------- /modules/ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/ccache.cmake -------------------------------------------------------------------------------- /modules/code_coverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/code_coverage.cmake -------------------------------------------------------------------------------- /modules/custom_color_messages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/custom_color_messages.cmake -------------------------------------------------------------------------------- /modules/cxx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/cxx.cmake -------------------------------------------------------------------------------- /modules/default_build_paths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/default_build_paths.cmake -------------------------------------------------------------------------------- /modules/definitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/definitions.cmake -------------------------------------------------------------------------------- /modules/export_header.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/export_header.cmake -------------------------------------------------------------------------------- /modules/fc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/fc.cmake -------------------------------------------------------------------------------- /modules/fc_optional.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/fc_optional.cmake -------------------------------------------------------------------------------- /modules/find/find_include_files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/find/find_include_files.cmake -------------------------------------------------------------------------------- /modules/find/find_libraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/find/find_libraries.cmake -------------------------------------------------------------------------------- /modules/git_info/git_info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/git_info/git_info.cmake -------------------------------------------------------------------------------- /modules/git_info/git_info.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/git_info/git_info.h.in -------------------------------------------------------------------------------- /modules/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/googletest.cmake -------------------------------------------------------------------------------- /modules/int64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/int64.cmake -------------------------------------------------------------------------------- /modules/math/accelerate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/accelerate.cmake -------------------------------------------------------------------------------- /modules/math/acml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/acml.cmake -------------------------------------------------------------------------------- /modules/math/atlas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/atlas.cmake -------------------------------------------------------------------------------- /modules/math/blas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/blas.cmake -------------------------------------------------------------------------------- /modules/math/cblas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/cblas.cmake -------------------------------------------------------------------------------- /modules/math/goto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/goto.cmake -------------------------------------------------------------------------------- /modules/math/lapack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/lapack.cmake -------------------------------------------------------------------------------- /modules/math/lapacke.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math/lapacke.cmake -------------------------------------------------------------------------------- /modules/math_libs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/math_libs.cmake -------------------------------------------------------------------------------- /modules/mpi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/mpi.cmake -------------------------------------------------------------------------------- /modules/omp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/omp.cmake -------------------------------------------------------------------------------- /modules/profile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/profile.cmake -------------------------------------------------------------------------------- /modules/python_interpreter.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/python_interpreter.cmake -------------------------------------------------------------------------------- /modules/python_libs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/python_libs.cmake -------------------------------------------------------------------------------- /modules/safeguards.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/safeguards.cmake -------------------------------------------------------------------------------- /modules/save_flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/save_flags.cmake -------------------------------------------------------------------------------- /modules/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/src.cmake -------------------------------------------------------------------------------- /modules/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/modules/version.cmake -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/cxx/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/cxx/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/cxx/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx/src/example.cpp -------------------------------------------------------------------------------- /test/cxx_accelerate/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx_accelerate/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/cxx_accelerate/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx_accelerate/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/cxx_accelerate/src/example.cpp: -------------------------------------------------------------------------------- 1 | ../../cxx_cblas/src/example.cpp -------------------------------------------------------------------------------- /test/cxx_cblas/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx_cblas/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/cxx_cblas/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx_cblas/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/cxx_cblas/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/cxx_cblas/src/example.cpp -------------------------------------------------------------------------------- /test/extra_cmake_options/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/extra_cmake_options/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/extra_cmake_options/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/extra_cmake_options/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/extra_cmake_options/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/extra_cmake_options/src/example.cpp -------------------------------------------------------------------------------- /test/fc/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/fc/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/fc/src/example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc/src/example.f90 -------------------------------------------------------------------------------- /test/fc/src/module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc/src/module.f90 -------------------------------------------------------------------------------- /test/fc_blas/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_blas/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/fc_blas/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_blas/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/fc_blas/src/example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_blas/src/example.f90 -------------------------------------------------------------------------------- /test/fc_git_info/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_git_info/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/fc_git_info/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_git_info/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/fc_git_info/src/example.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_git_info/src/example.F90 -------------------------------------------------------------------------------- /test/fc_int64/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_int64/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/fc_int64/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_int64/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/fc_int64/src/example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_int64/src/example.f90 -------------------------------------------------------------------------------- /test/fc_lapack/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_lapack/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/fc_lapack/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_lapack/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/fc_lapack/src/example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_lapack/src/example.f90 -------------------------------------------------------------------------------- /test/fc_omp/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_omp/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/fc_omp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_omp/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/fc_omp/src/example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/fc_omp/src/example.f90 -------------------------------------------------------------------------------- /test/python_interpreter/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_interpreter/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/python_interpreter/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_interpreter/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/python_interpreter/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_interpreter/src/example.cpp -------------------------------------------------------------------------------- /test/python_interpreter_custom/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_interpreter_custom/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/python_interpreter_custom/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_interpreter_custom/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/python_interpreter_custom/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_interpreter_custom/src/example.cpp -------------------------------------------------------------------------------- /test/python_libs/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_libs/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/python_libs/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_libs/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/python_libs/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_libs/src/example.cpp -------------------------------------------------------------------------------- /test/python_libs_custom/cmake/autocmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_libs_custom/cmake/autocmake.yml -------------------------------------------------------------------------------- /test/python_libs_custom/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_libs_custom/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/python_libs_custom/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/python_libs_custom/src/example.cpp -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/test/test.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-cafe/autocmake/HEAD/update.py --------------------------------------------------------------------------------