diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..1c23536 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,8 @@ +include_directories(commands) + +file(GLOB_RECURSE FILENAMES *.cpp) + +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) + +add_executable(phyLS phyLS.cpp ${FILENAMES}) +target_link_libraries(phyLS alice mockturtle)