Re: [hatari-devel] Cmake warning |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [hatari-devel] Cmake warning
- From: Thomas Huth <th.huth@xxxxxxxxx>
- Date: Fri, 2 Apr 2021 10:36:24 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1617352586; bh=694XVChrLzUSFnGU0brj32btJHf+Kez6vhiKE1jWwyc=; h=Date:From:To:Subject:From; b=RAUanwHYm/RrfO4dcj+RiYJjBanE/1ambqhr1spfgEh5BgY6VTrJCFRPg8RIypGma UB1NNL4u1sXTc+zD01HPcGb69wo7ZEl22KTm5Jt5o7MZq0D8vlgnu3mBqkOVuFIC77 r9RK+EgiNJhDjWIHD2duWwLCcl/37KX6xNtB0qRcJM0ngJkNTpldOze9L3D3vb/SUB Q973Z15izEzILVYRVtwfXLwfuAJjrdXdBR2E9TFo0o2XKVJmSjuX48cvOyCZMqEFaN rTn+M84+GJlCMZPLIUNfuWX0rgziW4sx1ezy1cxZk/qazc8D78FGspVHam02OmyxSf NOygFxTMyFC4Q==
Am Fri, 2 Apr 2021 09:54:21 +0200
schrieb Andreas Grabher <andreas_g86@xxxxxxxxxx>:
> Thank you Thomas and Chang for the answers! For some reason I got
> confused because „cmake“ gave an error while „cmake -G Xcode“ just
> gave a warning. I avoided the error by using „cmake .“ but didn’t
> expect this to be the solution for the warnings with „cmake -G Xcode“
> because i thought these were two different problems.
>
> Is this input a correct implementation of Bob C’s workflow?
>
> mkdir -p builddir
> cmake -G <generator> -S . -B builddir
> cmake --build
I think the last step would be:
cmake --build builddir
but apart from that, looks right, yes.
Thomas