├── .github └── workflows │ ├── linux.yml │ ├── test_helloworld.cmake │ └── windows.yml ├── .gitignore ├── README.md ├── example ├── CMakeLists.txt ├── hello.cc ├── hello_fallback.cc ├── include │ └── hello.h ├── main.cc └── main_fallback.cc └── modules.cmake /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/test_helloworld.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/.github/workflows/test_helloworld.cmake -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/README.md -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/example/hello.cc -------------------------------------------------------------------------------- /example/hello_fallback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/example/hello_fallback.cc -------------------------------------------------------------------------------- /example/include/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void hello(); 4 | -------------------------------------------------------------------------------- /example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/example/main.cc -------------------------------------------------------------------------------- /example/main_fallback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/example/main_fallback.cc -------------------------------------------------------------------------------- /modules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaut/modules/HEAD/modules.cmake --------------------------------------------------------------------------------