stlab / libraries

ASL libraries will be migrated here in the stlab namespace, new libraries will be created here.
https://stlab.cc
Boost Software License 1.0
660 stars 65 forks source link

No build output #512

Closed eighty4 closed 1 year ago

eighty4 commented 1 year ago

I ran the following build commands and there doesn't seem to be any build output after cmake --build ., neither new files or console output from cmake.

git clone https://github.com/stlab/libraries.git
cd libraries
cmake -S . -B ../BUILD -DCMAKE_BUILD_TYPE=DEBUG -DBUILD_TESTING=OFF -DCMAKE_CXX_STANDARD=20 -DSTLAB_USE_BOOST_CPP17_SHIMS=OFF
cd ../BUILD
cmake --build .
ruby --version
ruby 2.6.10p210 (2022-04-12 revision 67958) [universal.x86_64-darwin22]

cmake --version
cmake version 3.25.0-rc2

clang --version
Apple clang version 14.0.0 (clang-1400.0.29.202)
Target: x86_64-apple-darwin22.1.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
camio commented 1 year ago

If you have testing disabled, there isn't anything to build so your lack of output is expected :)

eighty4 commented 1 year ago

😵 The extension threw me off. Whoops.