2012-01-23 15:25:46 +00:00
|
|
|
|
2012-04-30 02:57:48 +00:00
|
|
|
include_directories(
|
|
|
|
${PROJECT_SOURCE_DIR}/include
|
|
|
|
${PROJECT_SOURCE_DIR}/pcbnew
|
2014-07-07 19:49:14 +00:00
|
|
|
${BOOST_INCLUDE}
|
2012-04-30 02:57:48 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
2012-06-23 23:21:03 +00:00
|
|
|
add_executable( test-nm-biu-to-ascii-mm-round-tripping
|
|
|
|
EXCLUDE_FROM_ALL
|
|
|
|
test-nm-biu-to-ascii-mm-round-tripping.cpp
|
|
|
|
)
|
2012-04-30 02:57:48 +00:00
|
|
|
|
2013-04-08 21:04:45 +00:00
|
|
|
add_executable( property_tree
|
2012-04-30 02:57:48 +00:00
|
|
|
EXCLUDE_FROM_ALL
|
2013-04-08 21:04:45 +00:00
|
|
|
property_tree.cpp
|
2020-01-22 23:27:20 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/common/richio.cpp
|
|
|
|
${CMAKE_SOURCE_DIR}/common/exceptions.cpp
|
|
|
|
${CMAKE_SOURCE_DIR}/common/dsnlexer.cpp
|
|
|
|
${CMAKE_SOURCE_DIR}/common/ptree.cpp
|
2012-04-30 02:57:48 +00:00
|
|
|
)
|
2013-04-08 21:04:45 +00:00
|
|
|
target_link_libraries( property_tree
|
2012-04-30 02:57:48 +00:00
|
|
|
${wxWidgets_LIBRARIES}
|
|
|
|
)
|
2017-02-15 08:47:41 +00:00
|
|
|
|
2017-07-24 14:01:02 +00:00
|
|
|
|
|
|
|
add_executable( utf8_tests
|
|
|
|
EXCLUDE_FROM_ALL
|
|
|
|
utf8_tests.cpp
|
|
|
|
)
|
|
|
|
target_link_libraries( utf8_tests
|
|
|
|
common
|
|
|
|
${wxWidgets_LIBRARIES}
|
|
|
|
)
|