agones.dev/agones@v1.53.0/sdks/cpp/build_scripts/nmake_release.bat (about)

     1  @echo off
     2  REM Copyright 2018 Google LLC All Rights Reserved.
     3  REM
     4  REM Licensed under the Apache License, Version 2.0 (the "License");
     5  REM you may not use this file except in compliance with the License.
     6  REM You may obtain a copy of the License at
     7  REM
     8  REM     http://www.apache.org/licenses/LICENSE-2.0
     9  REM
    10  REM Unless required by applicable law or agreed to in writing, software
    11  REM distributed under the License is distributed on an "AS IS" BASIS,
    12  REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  REM See the License for the specific language governing permissions and
    14  REM limitations under the License.
    15  
    16  pushd ..
    17  if not exist ".build" md ".build"
    18  pushd ".build"
    19  cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./install -Wno-dev
    20  cmake --build . --target INSTALL
    21  popd
    22  popd