Home | History | Annotate | Download | only in usdt_sample_app1
      1 cmake_minimum_required(VERSION 3.0)
      2 project(usdt_sample_app1)
      3 
      4 include_directories(
      5     ${USDT_SAMPLE_LIB1_INCLUDE_DIR}
      6 )
      7 
      8 link_directories(
      9     ${USDT_SAMPLE_LIB1_LINK_DIR}
     10 )
     11 
     12 add_executable( ${PROJECT_NAME}
     13     ${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
     14 )
     15 
     16 target_link_libraries( ${PROJECT_NAME}
     17     ${USDT_SAMPLE_LIB1_LIB}
     18     pthread
     19 )
     20