CMakeLists.txt 414 B

123456789101112131415
  1. cmake_minimum_required(VERSION 2.8)
  2. project(InterfaceLibrary)
  3. add_library(iface_nodepends INTERFACE)
  4. target_compile_definitions(iface_nodepends INTERFACE IFACE_DEFINE)
  5. add_executable(InterfaceLibrary definetestexe.cpp)
  6. target_link_libraries(InterfaceLibrary iface_nodepends)
  7. add_subdirectory(libsdir)
  8. add_executable(sharedlibtestexe sharedlibtestexe.cpp)
  9. target_link_libraries(sharedlibtestexe shared_iface)