2012-01-23 09:25:46 -06:00
|
|
|
|
2012-04-29 21:57:48 -05:00
|
|
|
include_directories(
|
|
|
|
${PROJECT_SOURCE_DIR}/include
|
|
|
|
${PROJECT_SOURCE_DIR}/pcbnew
|
2014-07-07 14:49:14 -05:00
|
|
|
${BOOST_INCLUDE}
|
2012-04-29 21:57:48 -05:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
2012-06-23 18:21:03 -05: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-29 21:57:48 -05:00
|
|
|
|
2013-04-08 16:04:45 -05:00
|
|
|
add_executable( property_tree
|
2012-04-29 21:57:48 -05:00
|
|
|
EXCLUDE_FROM_ALL
|
2013-04-08 16:04:45 -05: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-29 21:57:48 -05:00
|
|
|
)
|
2013-04-08 16:04:45 -05:00
|
|
|
target_link_libraries( property_tree
|
2012-04-29 21:57:48 -05:00
|
|
|
${wxWidgets_LIBRARIES}
|
|
|
|
)
|
2017-02-15 16:47:41 +08:00
|
|
|
|
2017-07-24 09:01:02 -05:00
|
|
|
|
|
|
|
add_executable( utf8_tests
|
|
|
|
EXCLUDE_FROM_ALL
|
|
|
|
utf8_tests.cpp
|
|
|
|
)
|
|
|
|
target_link_libraries( utf8_tests
|
|
|
|
common
|
|
|
|
${wxWidgets_LIBRARIES}
|
|
|
|
)
|