Skip to content
Snippets Groups Projects
Select Git revision
  • a749b7101e2c9c1b12e7bacf06873f1b34ceebb7
  • master default
  • 2015ss
  • 2014ss
4 results

pipes-20160418-1.log

Blame
  • Forked from Peter Gerwinski / bs
    Source project has a limited visibility.
    CMakeLists.txt 227 B
    
    # Core QPong library
    add_library(
        qpong_core
        Particle.cpp
        ImageBuffer.cpp
        Player.cpp
    )
    
    find_package(Threads)
    
    target_link_libraries(
        qpong_core
        ${CMAKE_THREAD_LIBS_INIT}
        fftw3
        fftw3_omp
        m
    )