Skip to content

Instantly share code, notes, and snippets.

@dadair-ca
Created November 25, 2012 03:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dadair-ca/4142265 to your computer and use it in GitHub Desktop.
Save dadair-ca/4142265 to your computer and use it in GitHub Desktop.
Minimal SDL CMakeLists.txt
project (PROJECT_NAME)
find_package (SDL REQUIRED)
set (SRC file1.cpp file2.cpp)
add_executable (EXECUTABLE_NAME ${SRC})
target_link_libraries(EXECUTABLE_NAME ${SDL_LIBRARY})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment