Create CMakeLists.txt

pull/1/head
潘鸿洋 2022-12-14 09:20:03 +08:00 committed by GitHub
parent 0f45feda98
commit 68db652315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

8
src/CMakeLists.txt Normal file
View File

@ -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)