Skip to content

Instantly share code, notes, and snippets.

@Cuda-Chen
Created February 26, 2018 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cuda-Chen/301e24154e1e936c6a90cc2a90529b71 to your computer and use it in GitHub Desktop.
Save Cuda-Chen/301e24154e1e936c6a90cc2a90529b71 to your computer and use it in GitHub Desktop.
CMakeLists.txt example of VS2017
# CMake minimum version requirment
cmake_minimum_required(VERSION 2.8)
# executable name
project(sobel_mfnn)
# set executable output path
#set(EXECUTABLE_OUTPUT_PATH "..")
set(CMAKE_BUILD_TYPE Debug)
set(SRCS
main.cpp
)
add_executable(sobel_mfnn ${SRCS})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment