You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
778 B

  1. include_directories(
  2. ${PROJECT_SOURCE_DIR}/include
  3. ${PROJECT_SOURCE_DIR}/pcbnew
  4. ${BOOST_INCLUDE}
  5. ${CMAKE_CURRENT_SOURCE_DIR}
  6. ${CMAKE_BINARY_DIR}
  7. )
  8. add_executable( test-nm-biu-to-ascii-mm-round-tripping
  9. EXCLUDE_FROM_ALL
  10. test-nm-biu-to-ascii-mm-round-tripping.cpp
  11. )
  12. add_executable( property_tree
  13. EXCLUDE_FROM_ALL
  14. property_tree.cpp
  15. ${CMAKE_SOURCE_DIR}/common/richio.cpp
  16. ${CMAKE_SOURCE_DIR}/common/exceptions.cpp
  17. ${CMAKE_SOURCE_DIR}/common/dsnlexer.cpp
  18. ${CMAKE_SOURCE_DIR}/common/ptree.cpp
  19. )
  20. target_link_libraries( property_tree
  21. ${wxWidgets_LIBRARIES}
  22. )
  23. add_executable( utf8_tests
  24. EXCLUDE_FROM_ALL
  25. utf8_tests.cpp
  26. )
  27. target_link_libraries( utf8_tests
  28. common
  29. ${wxWidgets_LIBRARIES}
  30. )