Skip to content

Instantly share code, notes, and snippets.

@jeffamstutz
Created August 18, 2021 20:37
Show Gist options
  • Save jeffamstutz/ab1861bf76cd4b23a22afc35d2dc5c04 to your computer and use it in GitHub Desktop.
Save jeffamstutz/ab1861bf76cd4b23a22afc35d2dc5c04 to your computer and use it in GitHub Desktop.
Build FLIP with ExternalProject
include(ExternalProject)
ExternalProject_Add(flip
URL "https://github.com/NVlabs/flip/archive/refs/heads/main.zip"
CMAKE_ARGS
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_BINARY_DIR}/install
BUILD_COMMAND cmake --build .
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment